> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fimo.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP server

> Connect your IDE and MCP clients to Fimo's documentation through the Model Context Protocol.

The **Model Context Protocol (MCP)** lets AI tools in your IDE pull trusted context straight from Fimo's documentation while you work.

<Note>
  Fimo's MCP server is public and read-only. No authentication is required.
</Note>

## Server URL

```
https://fimo.ai/docs/mcp
```

Use **SSE transport** with the URL above.

## What this integration can 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

<Note>
  Exact tool names vary by MCP client. After connecting, ask your assistant to **list resources** to see what this server provides.
</Note>

## Connect a client

<Tabs>
  <Tab title="Claude">
    <Steps>
      <Step title="Open MCP settings">
        In Claude Desktop, go to **Settings → Developer → MCP configuration**.
      </Step>

      <Step title="Add the Fimo server">
        Add a server entry using **SSE** transport:

        ```json theme={null}
        {
          "mcpServers": {
            "fimo-docs": {
              "transport": {
                "type": "sse",
                "url": "https://fimo.ai/docs/mcp"
              }
            }
          }
        }
        ```
      </Step>

      <Step title="Restart Claude Desktop">
        Relaunch the app so the server loads.
      </Step>

      <Step title="Verify the connection">
        Ask Claude: **"List MCP resources."** You should see Fimo resources.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Cursor & VS Code (Continue)">
    <Steps>
      <Step title="Install Continue">
        Install the **Continue** extension and open its JSON settings.
      </Step>

      <Step title="Register the server">
        Add a new MCP server:

        ```json theme={null}
        {
          "mcpServers": [
            {
              "name": "fimo-docs",
              "type": "sse",
              "url": "https://fimo.ai/docs/mcp"
            }
          ]
        }
        ```
      </Step>

      <Step title="Reload the IDE">
        Reload the window to apply changes.
      </Step>

      <Step title="Test a query">
        In chat, try: **"Using the Fimo MCP, find 'Environments' and summarize the key points."**
      </Step>
    </Steps>
  </Tab>

  <Tab title="Windsurf">
    <Steps>
      <Step title="Install Continue">
        Open the Windsurf extensions panel and install **Continue**.
      </Step>

      <Step title="Add the server in Continue settings">
        Use the same configuration as VS Code:

        ```json theme={null}
        {
          "mcpServers": [
            {
              "name": "fimo-docs",
              "type": "sse",
              "url": "https://fimo.ai/docs/mcp"
            }
          ]
        }
        ```
      </Step>

      <Step title="Reload Windsurf">
        Reload the window to apply changes and test a query.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Cline">
    <Steps>
      <Step title="Install Cline">
        Install the **Cline** extension in VS Code or Cursor.
      </Step>

      <Step title="Configure MCP servers">
        Add the Fimo server using SSE in Cline settings JSON:

        ```json theme={null}
        {
          "mcpServers": [
            {
              "name": "fimo-docs",
              "type": "sse",
              "url": "https://fimo.ai/docs/mcp"
            }
          ]
        }
        ```
      </Step>

      <Step title="Restart and verify">
        Reload the window, then ask Cline to list MCP resources.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Zed">
    <Steps>
      <Step title="Open Settings JSON">
        In Zed, open **Settings** and switch to the JSON view.
      </Step>

      <Step title="Register the server">
        Add an entry under the MCP servers section:

        ```json theme={null}
        {
          "mcp": {
            "servers": {
              "fimo-docs": {
                "transport": { "type": "sse", "url": "https://fimo.ai/docs/mcp" }
              }
            }
          }
        }
        ```
      </Step>

      <Step title="Restart Zed">
        Restart Zed and run a quick test query.
      </Step>
    </Steps>
  </Tab>

  <Tab title="ChatGPT">
    <Note>
      ChatGPT does not support external MCP servers at this time. Use Claude Desktop or an IDE client like Continue if you need MCP features.
    </Note>
  </Tab>
</Tabs>

## Other MCP clients

Most clients accept JSON configuration or environment variables.

* **Transport**: `sse`
* **URL**: `https://fimo.ai/docs/mcp`
* **Auth**: none

```json theme={null}
{
  "name": "fimo-docs",
  "transport": { "type": "sse", "url": "https://fimo.ai/docs/mcp" }
}
```

Check your client's docs for the exact file path and schema.

## Prompts that work well

* `Search Fimo docs for "environments" and give the top 3 matches with links.`
* `Fetch /cli/content and extract how schemas and entries relate.`
* `Find "Billing & credits" and summarize credits vs bandwidth in 4 bullets.`

<Tip>Ask the assistant to **cite page paths** so you can click through quickly.</Tip>

## 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

<Columns cols={3}>
  <Card title="Connect your coding agent" icon="plug" href="/docs/ai/connect-agents">
    Set your agent up to drive Fimo.
  </Card>

  <Card title="Skills & rules" icon="book" href="/docs/ai/skills-and-rules">
    How skills and rule files work.
  </Card>

  <Card title="Core concepts" icon="lightbulb" href="/docs/get-started/concepts">
    The mental model behind Fimo.
  </Card>
</Columns>
