stape
Interact with the Stape API using AI assistants like Claude, or in AI-powered IDEs like Cursor.
claude mcp add --transport stdio stape-io-stape-mcp-server npx -y mcp-remote https://mcp.stape.ai/mcp --header Authorization: ${your_stape_api_key}How to use
This MCP server configuration proxys your Claude or client’s MCP requests through Stape's mcp-remote bridge. The server is exposed via an npx invocation that runs the mcp-remote package against the Stape MCP endpoint. To use it, add the stape-mcp-server entry to your Claude Desktop settings (Settings -> Developer -> Edit Config) and provide your Stape API key in place of the placeholder. When configured, Claude will forward MCP requests to https://mcp.stape.ai/mcp with the Authorization header containing your API key, enabling access to Stape’s context and tools via the MCP protocol.
If you operate in the EU region, you can enable the EU endpoint by including the additional header X-Stape-Region: EU in the same configuration. This allows Claude to route requests to the EU-specific MCP endpoint. The mcp-remote bridge handles credential storage locally, so if you encounter stale tokens or credentials, you can clear local state as described in the troubleshooting notes and restart your MCP client.
How to install
Prerequisites:
- Node.js v18 or higher (npx is included with modern Node.js/npm installations)
Installation steps:
-
Ensure Node.js is installed on your system. You can verify with: node -v npm -v
-
Install or verify npx is available (comes with npm in modern setups). npx --version
-
Prepare the MCP configuration for Claude Desktop:
- In Claude Desktop, go to Settings -> Developer -> Edit Config.
- Replace the content with the following JSON, and insert your Stape API key in place of ${your_stape_api_key}:
{ "mcpServers": { "stape-mcp-server": { "command": "npx", "args": [ "-y", "mcp-remote", "https://mcp.stape.ai/mcp", "--header", "Authorization: ${your_stape_api_key}" ] } }, "env": { "your_stape_api_key": "Stape API key used for Authorization header" } }
-
Save the configuration and restart Claude Desktop to establish the MCP connection.
Additional notes
Tips and caveats:
- MCP server name length: keep the server name short (e.g., stape-mcp-server) to avoid truncation by some MCP clients that have a 60-character limit for the combined server name and tool name.
- EU users: if you need EU region support, add the header X-Stape-Region: EU to the config as shown in the README.
- Credential caching: mcp-remote stores credentials locally (typically under ~/.mcp-auth). If you encounter authentication issues, you can safely remove that cache with rm -rf ~/.mcp-auth and restart the MCP client to re-authenticate.
- Ensure your Stape API key remains secret; do not commit it to shared configurations.
Related MCP Servers
context7
Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
obsidian -tools
Add Obsidian integrations like semantic search and custom Templater prompts to Claude or any MCP client.
google-tag-manager
MCP server for Google Tag Manager
MiniMax -JS
Official MiniMax Model Context Protocol (MCP) JavaScript implementation that provides seamless integration with MiniMax's powerful AI capabilities including image generation, video generation, text-to-speech, and voice cloning APIs.
gtm
An MCP server for Google Tag Manager. Connect it to your LLM, authenticate once, and start managing GTM through natural language.
mcp-bundler
Is the MCP configuration too complicated? You can easily share your own simplified setup!