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. The MCP server uses OAuth for authentication — your agent will be guided through the authorization flow automatically when connecting.
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 and uses OAuth for authentication.
The Commet MCP server can be added to any supported MCP client:
| Environment | URL |
|---|---|
| Production | https://commet.co/mcp |
| Sandbox | https://sandbox.commet.co/mcp |
For example:
{
"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?