Multi-LLM Integration
Connect to Any AI Platform
Choose your preferred AI platform and follow the integration guide to access GTM Alpha professional consulting tools.
Claude Desktop Integration
Connect GTM Alpha to Claude Desktop using the npm package for instant access to professional GTM consulting.
Configuration File Location:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Setup Instructions:
- Open the configuration file in your text editor
- Add the GTM Alpha server configuration
- Save the file and restart Claude Desktop
- Test with: "Analyze my GTM strategy using EPIC framework"
claude_desktop_config.json
{
"mcpServers": {
"gtm-alpha": {
"command": "npx",
"args": ["-y", "@shashwatgtmalpha/gtm-alpha-mcp-server"]
}
}
}
Cursor / Windsurf Integration
Connect GTM Alpha to Cursor IDE or Windsurf using npx for seamless GTM consulting within your development environment.
Configuration File:
.cursor/mcp.json (in project root)
npm Package:
@shashwatgtmalpha/gtm-alpha-mcp-server
mcp.json
{
"mcpServers": {
"gtm-alpha": {
"command": "npx",
"args": ["-y", "@shashwatgtmalpha/gtm-alpha-mcp-server"]
}
}
}
ChatGPT / OpenAI Integration
Access GTM Alpha tools through ChatGPT Custom GPTs or OpenAI API using our MCP-SSE endpoint.
MCP-SSE Endpoint:
https://gtm-alpha.netlify.app/mcp-sse
Features:
- JSON-RPC 2.0 protocol
- SSE transport for real-time communication
- Tool annotations for safety
API Request Example
curl -X POST https://gtm-alpha.netlify.app/mcp-sse \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "gtm_consultation",
"arguments": {
"gtm_challenge": "How to enter enterprise market?"
}
}
}'
Google Gemini Integration
Connect GTM Alpha to Google Gemini through function calling using our MCP-SSE endpoint.
MCP-SSE Endpoint:
https://gtm-alpha.netlify.app/mcp-sse
Available Tools:
- gtm_consultation - Get GTM strategy advice
- epic_audit - Get EPIC framework scores
- generate_roadmap - Create implementation roadmap
Get Tools List
curl -X POST https://gtm-alpha.netlify.app/mcp-sse \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'
Microsoft Copilot Integration
Integrate GTM Alpha with Microsoft Copilot using our MCP-SSE endpoint.
MCP-SSE Endpoint:
https://gtm-alpha.netlify.app/mcp-sse
Protocol:
- JSON-RPC 2.0 over HTTP POST
- MCP Protocol Version: 2024-11-05
- Server Version: 1.0.5
Initialize Connection
curl -X POST https://gtm-alpha.netlify.app/mcp-sse \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize"
}'
Direct API Access
Direct REST API and MCP access for custom integrations and applications.
Endpoints:
MCP-SSE: https://gtm-alpha.netlify.app/mcp-sse
REST API: https://gtm-alpha.netlify.app/api/gtm
REST API: https://gtm-alpha.netlify.app/api/gtm
npm Install
npm install @shashwatgtmalpha/gtm-alpha-mcp-server
# Or run directly with npx
npx @shashwatgtmalpha/gtm-alpha-mcp-server