MCP Server Setup

Connect your AI assistant to Strategy Quest using the Model Context Protocol. Your agent will be able to read your workspaces, seasons, priorities, artifacts, and domains.

1

Get an API Token

You need a Strategy Quest account and an API token to authenticate.

  1. Open your Settings page
  2. Scroll to the API Tokens section
  3. Enter a name (e.g. "Claude Desktop") and click Create Token
  4. Copy the token immediately — it starts with sq_ and is only shown once
2

Configure Your Client

Add the MCP server to your AI client's configuration. Replace YOUR_API_TOKEN with the token from step 1.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "strategy-quest": {
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      },
      "type": "streamablehttp",
      "url": "https://mystrategy.quest/mcp"
    }
  }
}

Claude Code

Add to .mcp.json in your project or ~/.claude/mcp.json globally

{
  "mcpServers": {
    "strategy-quest": {
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      },
      "type": "streamablehttp",
      "url": "https://mystrategy.quest/mcp"
    }
  }
}

Cursor / Other Editors

Add to your MCP configuration file

{
  "mcpServers": {
    "strategy-quest": {
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      },
      "type": "streamablehttp",
      "url": "https://mystrategy.quest/mcp"
    }
  }
}

Any MCP Client

Use these details to configure any MCP-compatible client

Endpoint: https://mystrategy.quest/mcp
Transport: Streamable HTTP (POST)
Auth header: Authorization: Bearer YOUR_API_TOKEN
Protocol: MCP 2025-03-26
3

Available Tools

Once connected, your agent can use these read-only tools.

list_workspaces read-only

List all workspaces the authenticated user has access to.

get_current_season read-only

Get the current active season for a workspace, including theme, life picture, and domain gaps.

Parameters

workspace_id required — UUID of the workspace
get_priorities read-only

Get today's priorities — active obligations and experiments.

Parameters

workspace_id required — UUID of the workspace
list_artifacts read-only

List artifacts filtered by type and workspace.

Parameters

workspace_id required — UUID of the workspace
type optional — Filter: domain, outcome, experiment, obligation, weekly_review
get_artifact read-only

Get a specific artifact with full content.

Parameters

artifact_id required — UUID of the artifact
list_domains read-only

Get life domains overview for a workspace.

Parameters

workspace_id required — UUID of the workspace

Typical Workflow

1.

Call list_workspaces to find the workspace ID

2.

Call get_current_season to understand the current theme and focus

3.

Call get_priorities for today's active obligations and experiments

4.

Use list_artifacts and get_artifact to dive into specific items