MCP
The inTandem Developers Hub Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude Desktop, to interact directly with your inTandem Developers Hub API and documentation.
What is MCP?
Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The inTandem Developers Hub MCP server provides AI agents with:
- Direct API access to inTandem Developers Hub functionality
- Documentation search capabilities
- Real-time data from your inTandem Developers Hub account
- Code generation assistance for inTandem Developers Hub integrations
inTandem Developers Hub MCP Server Setup
inTandem Developers Hub hosts a remote MCP server at https://developers.intandem.tech/mcp
. Configure your AI development tools to connect to this server. If your APIs require authentication, you can pass in headers via query parameters or however headers are configured in your MCP client.
Add to~/.cursor/mcp.json
:
{
"mcpServers": {
"intandem": {
"command": "npx",
"args": [
"mcp-remote",
"https://developers.intandem.tech/mcp",
"--header",
"Authorization: ${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_DIRECTORY/STAFF_TOKEN"
}
}
}
}
Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, Windsurf, etc.)
- Start a new chat with the AI assistant
- Ask about inTandem Developers Hub - try questions like:
- "How do I [common use case]?"
- "Show me an example of [API functionality]"
- "Create a [integration type] using inTandem Developers Hub"
- Example Prompts:
- Directory Token (Can be obtained from the intadem support team if you are a signed partner):
- "use intandem mcp and get me a list of current app assignments"
- "use intandem mcp and get me the directory branding parameters"
- Staff Token (Can be obtained under settings>integrations>>webhooks):
- "use intandem mcp and get me a list of my clients"
- "use intandem mcp and get me a list of my services"
- Directory Token (Can be obtained from the intadem support team if you are a signed partner):
Updated 15 days ago