Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.colossal.sh/llms.txt

Use this file to discover all available pages before exploring further.

The Colossal MCP server gives AI coding assistants direct access to your store’s GraphQL API. Your assistant can query products, customers, orders, and analytics without leaving your editor.
MCP is a protocol that connects AI assistants to external data sources. The Colossal MCP server acts as a bridge between your AI tools and your store.

Prerequisites

  • An AI assistant that supports MCP (Claude Code, Cursor, VS Code)
  • Your Colossal API token from the admin dashboard

Installation

claude mcp add --transport http colossal https://mcp.colossal.sh --header "Authorization: Bearer YOUR_TOKEN"
Replace YOUR_TOKEN with your API token from the dashboard.

What you can do

Once connected, ask your AI assistant to work with your store data:
  • Query products, customers, and orders
  • Analyze sales and customer behavior
  • Generate reports from commerce data
  • Build apps using real store data

Available data

The MCP server provides read access to:
EntityExamples
ProductsName, pricing, variants, inventory, status
CustomersContact info, order history
OrdersLine items, payment status, totals
PaymentsTransaction history, payment methods
ProjectsOrganization structure, configuration

Connection details

For other MCP-compatible clients:
SettingValue
Endpointhttps://mcp.colossal.sh
ProtocolHTTP
Auth headerAuthorization: Bearer YOUR_TOKEN

Troubleshooting

  • Can’t connect — verify the endpoint URL and that your token is valid
  • Field not found — use schema introspection to check available fields
  • Rate limiting — wait between requests and retry
See the GraphQL API reference for the full schema.