
Language 🇺🇸 English (US)
LLM Integration
MCP Server
LLM Kit
The FastComments LLM Kit helps AI coding assistants like Claude, ChatGPT, and Cursor understand and integrate with FastComments by providing them access to our complete documentation through a simple search API.
By adding a snippet to your project's AGENT.md or CLAUDE.md file, you enable AI assistants to quickly search and retrieve relevant FastComments documentation, making implementation faster and more accurate.
Get the LLM Kit 
Add this snippet to your project's AI assistant configuration files (like AGENT.md or CLAUDE.md) that teaches AI coding assistants how to search and access FastComments documentation.

This way your AI assistant can easily get up-to-date information and provide more accurate implementations in less time.
Usage Example
When using an AI assistant like Claude Code or Cursor, you can ask questions like:
- "How do I install FastComments on React?"
- "Show me how to configure SSO with FastComments"
- "What are the FastComments API authentication options?"
The AI assistant will automatically search the documentation using the provided API endpoint and give you accurate, up-to-date answers based on the official documentation.
MCP Server 
FastComments runs a hosted Model Context Protocol (MCP) server so AI coding assistants and agentic clients can call the FastComments API directly. Every tool the MCP server exposes is auto-generated from the public OpenAPI spec, so anything the REST API can do, an MCP client can do.
The endpoint is stateless and streamable-HTTP based. There's no session to keep alive, no client registration step, and no server-side state per client.
Endpoint

Authentication uses the same API key as the REST API. You can also pass tenantId and the key as x-tenant-id and x-api-key HTTP headers if your client supports custom headers.
Pre-filled setup
The dashboard has a setup helper that generates the URL and ready-to-paste config snippets for popular MCP clients. Go to your account dashboard and open Integrate -> MCP Server, or visit it directly:

Pick which API key to use from the dropdown, then copy any of the generated snippets.
Claude Code
Register the FastComments server with one command:

After it's registered, run /mcp inside a Claude Code session to confirm the connection and list available tools.
Claude Desktop / Cursor
Add this block to your client's MCP servers config (claude_desktop_config.json for Claude Desktop, mcp.json for Cursor):

Security
The API key is embedded in the URL. Treat the URL like a secret: do not paste it into public chats, screenshots, or commits. If a key is exposed, rotate it on the API Keys page in your dashboard.