MCP Server Endpoint
Authorization: Basic <base64-encoded-api-key>x-account-id: <account-id>(or?x-account-id=query param)
Fastest Way to Test
AI Playground
No setup. Test with natural language instantly
Postman
Fork the StackOne collection and test MCP requests
MCP Inspector
Run
npx @modelcontextprotocol/inspector https://api.stackone.com/mcpHow It Works
The StackOne MCP Server dynamically generates its tool catalog based on your account’s configured integrations and enabled actions.Multiple Integration Options
Multiple Integration Options
Use the MCP server, the Actions RPC endpoint, the Unified API endpoints, or A2A Agents, all using the same linked account. You can also access the StackOne AI Toolset for specialized LLM tools.
Accuracy & Context Engineering
Accuracy & Context Engineering
Enhance your agent’s toolset with Tool Search for natural language discovery of relevant tools. Every tool has structured input/output schemas and documentation.
Customizable & Extensible
Customizable & Extensible
Toggle tools on or off, customize your toolset, or create your own connectors using StackOne’s Connector Engine and StackOne Agent.
Purposeful Action Design
Purposeful Action Design
StackOne tools aren’t direct wrappers to single API endpoints. Many are mapped to high-value, context-optimized actions tailored to common business use cases.
Framework Guides
Most frameworks support MCP natively:Claude SDK
Vercel AI SDK
OpenAI Agents
Pydantic AI
CrewAI
Google ADK
App Guides
Claude Desktop
Goose
n8n
Postman
Manual Testing (cURL)
Initialize connection
Initialize connection
List available tools
List available tools
Call a tool
Call a tool
Tool Modes
The MCP endpoint supports atool-mode query parameter that controls how tools are registered.
Search & execute mode is useful when an integration exposes many actions. Instead of registering hundreds of individual tools, the server exposes just two:
{provider}_search_actions— search for actions by natural language query{provider}_execute_action— execute an action by itsaction_id
search_actions first to discover available action IDs, then calls execute_action to run the chosen action.
Enable it by appending ?tool-mode=search_execute to the MCP URL:
Key Features
- Account Specific: Each linked account gets its own MCP server endpoint
- Streamable HTTP Transport: Uses modern HTTP-based MCP transport (not SSE)
- Complete Platform Access: All StackOne actions available as MCP tools
- Action Selection Control: Only enabled actions from your integration config are returned
- Production Ready: Authentication, rate limiting, and security built-in
Troubleshooting
For more, see Troubleshooting Guide and Authentication & Security.

