Remote MCP server

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_deck
  • create_board_presentation
  • create_sales_presentation
  • create_training_presentation
  • create_presentation_from_url
  • create_editable_chart

Anonymous analysis tools

  • route_business_artifact
  • run_business_diagnostic
  • analyze_proposal_draft
  • analyze_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