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

# Connect MCP clients to Fimo

> Connect your IDE to Fimo docs 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>

## What is the server URL?

[https://docs.fimo.ai/mcp](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

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

## How do I connect?

<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://docs.fimo.ai/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 AI">
        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://docs.fimo.ai/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 ‘Preview overview’ and summarize 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://docs.fimo.ai/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://docs.fimo.ai/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://docs.fimo.ai/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>

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

```json theme={null}
{
  "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.`

<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="Preview overview" icon="door-open" href="/preview/overview">
    Learn how Preview differs from Production.
  </Card>

  <Card title="Content overview" icon="pen-to-square" href="/content/introduction">
    Understand Collections and Entries.
  </Card>

  <Card title="Prompt Engineering 101" icon="sparkles" href="/guides/prompt-engineering-101">
    Write clearer prompts that save credits.
  </Card>
</Columns>
