AI Onboarding
Everything you need to onboard your AI agent to Commet.
If you're developing with AI, Commet offers several resources to improve your experience.
Prerequisite: Create an Account
Currently, we require a human to create a Commet account at commet.co. Browser-based clients authenticate with OAuth — your agent is guided through the authorization flow when connecting. Headless agents pass a Commet API key in the x-api-key header instead; the key pins the session to the organization that created it.
Commet MCP Server
MCP is an open protocol that standardizes how applications provide context to LLMs. Among other benefits, it provides LLMs tools to act on your behalf. Our MCP server covers the full Commet platform. It authenticates with OAuth for interactive clients, or with a Commet API key via the x-api-key header for headless agents.
A single endpoint serves both sandbox and live organizations. OAuth sessions pick which org to act on with switch_organization; API-key sessions are pinned to the key's organization and don't need it:
{
"mcpServers": {
"commet": {
"url": "https://commet.co/mcp"
}
}
}Commet Docs for Agents
You can give your agent current docs in a context-aware way:
-
Full llms.txt
Give your agent all our docs in a single file.
https://commet.co/llms-full.txt -
Per-page markdown
Every doc includes a markdown version. Append
.mdxto any docs path.https://commet.co/docs/ai-onboarding.mdx
Billing Skills for Agents
Agent Skills give AI agents expert-level billing knowledge — SDK integration, pricing models, subscription patterns, and best practices.
Install all Commet skills:
npx skills add commet-labs/commet-skillsOr install standalone knowledge packages:
npx skills add commet-labs/billing-best-practices
npx skills add commet-labs/pricing-models
npx skills add commet-labs/subscription-patternsHow is this guide?