Skip to main content
The Model Context Protocol (MCP) lets AI tools in your IDE pull trusted context straight from Fimo’s documentation while you work.
Fimo’s MCP server is public and read-only. No authentication is required.

What is the server URL?

https://docs.fimo.ai/mcp Use SSE transport with the URL above.

What can this integration do?

  • Search and retrieve Fimo docs to ground answers
  • Fetch pages by path for accurate quoting and citations
  • List resources exposed by the server so you know what’s available
Exact tool names vary by MCP client. After connecting, ask your assistant to list resources to see what this server provides.

How do I connect?

  • Claude
  • Cursor & VS Code (Continue)
  • Windsurf
  • Cline
  • Zed
  • ChatGPT
1

Open MCP settings

In Claude Desktop, go to Settings → Developer → MCP configuration.
2

Add the Fimo server

Add a server entry using SSE transport:
{
  "mcpServers": {
    "fimo-docs": {
      "transport": {
        "type": "sse",
        "url": "https://docs.fimo.ai/mcp"
      }
    }
  }
}
3

Restart Claude Desktop

Relaunch the app so the server loads.
4

Verify the connection

Ask Claude: “List MCP resources.” You should see Fimo resources.

How do I connect other MCP clients?

Most clients accept JSON configuration or environment variables.
  • Transport: sse
  • URL: https://docs.fimo.ai/mcp
  • Auth: none
Example JSON:
{
  "name": "fimo-docs",
  "transport": { "type": "sse", "url": "https://docs.fimo.ai/mcp" }
}
Check your client’s docs for the exact file path and schema.

What prompts work well?

  • Search Fimo docs for "Edit mode" and give the top 3 matches with links.
  • Fetch /content/introduction and extract the definition of Collections and Entries.
  • Find "Billing & Usage" and summarize credits vs bandwidth in 4 bullets.
Ask the assistant to cite page paths so you can click through quickly.

Troubleshooting

Nothing appears after connecting? Confirm the transport is sse and the URL matches exactly. Schema or config errors? Copy the sample JSON for your client above. Network issues? Some networks block SSE. Try another network or a VPN.

What’s next?