Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Remote MCP server that exposes the Strateegia Projects API, enabling users to manage projects, journey maps, and collaborative points via natural language in MCP clients like Claude, Cursor, and ChatGPT.

README.md

strateegia-mcp

Remote MCP server that exposes the Strateegia Projects API to MCP clients (Claude.ai, Claude Desktop, Cursor, ChatGPT, etc.).

Runs on Cloudflare Workers. Stateless — the user's Strateegia API key is passed through on every request, never stored.

v1 Tools

| Tool | Description | |---|---| | list_projects | List user's projects (paginated) | | get_project | Full project details with members and maps | | create_project | Create a project in a lab | | list_maps_in_project | List journey maps in a project | | get_map | Full map with all points and structure | | create_divergence_point | Collect ideas/responses (brainstorming) | | create_convergence_point | Group decision-making via polls | | create_essay_point | Long-form text with optional peer evaluation | | create_monitor_point | Track qualitative or quantitative progress | | add_comment_to_question | Add a response to a divergence question | | like_comment | Like (curtir) a response in a divergence point | | unlike_comment | Remove a previously given like on a response | | reply_to_comment | Reply to an existing response (nested comment) |

Development

npm install
npm run dev

This starts Wrangler dev server at http://localhost:8787. The MCP endpoint is /mcp.

Testing with MCP Inspector

npx @modelcontextprotocol/inspector

Enter http://localhost:8787/mcp as the server URL. Add an Authorization: Bearer <your_strateegia_api_key> header.

Deploy

npx wrangler deploy

Your MCP server will be available at https://strateegia-mcp.<your-account>.workers.dev/mcp.

Build the .mcpb bundle

npm run mcpb:pack

Output: strateegia.mcpb na raiz do projeto. Pode ser anexado em uma GitHub Release e baixado pelos usuários. Para mudar o Worker URL apontado pelo bundle, edite a entrada em server.mcp_config.args de mcpb/manifest.json antes de empacotar.

Client Configuration

Claude.ai (Web)

Settings > Connectors > Add custom connector:

  • URL: https://strateegia-mcp.<your-account>.workers.dev/mcp
  • Add header: Authorization: Bearer <your_strateegia_api_key>

Cursor / Claude Code (mcp.json)

These clients support remote MCP servers with url + headers directly:

{
  "mcpServers": {
    "strateegia": {
      "url": "https://strateegia-mcp.<your-account>.workers.dev/mcp",
      "headers": {
        "Authorization": "Bearer <your_strateegia_api_key>"
      }
    }
  }
}

Claude Desktop — Extensão .mcpb (recomendado)

Instalação sem editar JSON. Ideal para usuário leigo.

  1. Baixe o arquivo strateegia.mcpb mais recente (ver Releases ou gere localmente com npm run mcpb:pack)
  2. Dê duplo clique — o Claude Desktop abre a tela de instalação
  3. Cole sua API key do Strateegia (gere em https://app.strateegia.digital → Configurações → API Keys)
  4. Clique em "Instalar". Pronto.

Requer Claude Desktop ≥ 0.10.0.

Claude Desktop — manual (claude_desktop_config.json)

Alternativa sem a extensão. Edite ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) ou %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "strateegia": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://strateegia-mcp.<your-account>.workers.dev/mcp",
        "--header",
        "Authorization: Bearer <your_strateegia_api_key>"
      ]
    }
  }
}

Other stdio-only clients

Any client that only supports stdio transport can use the same mcp-remote approach shown above.

Auth Model

The user provides their Strateegia API key (PAT) as a Bearer token. The worker:

  1. Extracts Authorization: Bearer <api_key> from each request
  2. Rejects with 401 if missing
  3. Exchanges the API key for a JWT via POST /users/v1/auth/api
  4. Uses the JWT to call the Strateegia Projects API
  5. Propagates any 401/403/422/429 errors from the API

No credentials are stored. The JWT is ephemeral — it only exists during the request lifecycle. If the API key is revoked in Strateegia, it stops working here automatically.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Maps & Location servers.