Gixo MCP Server
Connect MCP-capable clients to Gixo for Lumen presentation generation, business artifact routing, proposal analysis, content analysis, and authenticated execution.
https://gixo.ai/mcp
Tool Surface
Anonymous Lumen tools
create_pitch_deckcreate_board_presentationcreate_sales_presentationcreate_training_presentationcreate_presentation_from_urlcreate_editable_chart
Anonymous analysis tools
route_business_artifactrun_business_diagnosticanalyze_proposal_draftanalyze_content_workbench
Authenticated execution
execute_business_artifact
Requires a bearer token mapped to an entitled Gixo account.
Connect
Use the remote server URL in any MCP-capable client:
https://gixo.ai/mcp
For Claude API usage with mcp_servers, see Use Gixo via the Claude API MCP Connector.
Direct MCP Smoke Check
Initialize a session, send the initialized notification, then list tools.
curl -i -X POST https://gixo.ai/mcp \
-H "content-type: application/json" \
-H "accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"gixo-docs-smoke","version":"1.0.0"}}}'
The initialize response includes an mcp-session-id header. Send it back on later requests:
curl -X POST https://gixo.ai/mcp \
-H "content-type: application/json" \
-H "accept: application/json, text/event-stream" \
-H "mcp-session-id: $MCP_SESSION_ID" \
-d '{"jsonrpc":"2.0","method":"notifications/initialized","params":{}}'
curl -X POST https://gixo.ai/mcp \
-H "content-type: application/json" \
-H "accept: application/json, text/event-stream" \
-H "mcp-session-id: $MCP_SESSION_ID" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'
Authenticated Execution
Authenticated execution uses a bearer token and the same user, team, and entitlement checks as the Gixo web app.
Authorization: Bearer YOUR_ACCESS_TOKEN
Clients that support OAuth protected-resource metadata can discover Gixo MCP auth metadata at:
https://gixo.ai/.well-known/oauth-protected-resource
Operational Notes
- Use
https://gixo.ai/mcpas the MCP server URL. - Generated anonymous deck links are public preview links intended for claim or signup flows.
- Keep prompts explicit about whether you want a generated Lumen deck, read-only analysis, or authenticated execution.
- For API examples specific to Anthropic's Messages API, use /docs/claude-api-mcp.