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?
Open MCP settings
In Claude Desktop, go to Settings → Developer → MCP configuration.
Add the Fimo server
Add a server entry using SSE transport:{
"mcpServers": {
"fimo-docs": {
"transport": {
"type": "sse",
"url": "https://docs.fimo.ai/mcp"
}
}
}
}
Restart Claude Desktop
Relaunch the app so the server loads.
Verify the connection
Ask Claude: “List MCP resources.” You should see Fimo resources.
Install Continue AI
Install the Continue extension and open its JSON settings.
Register the server
Add a new MCP server:{
"mcpServers": [
{
"name": "fimo-docs",
"type": "sse",
"url": "https://docs.fimo.ai/mcp"
}
]
}
Reload the IDE
Reload the window to apply changes.
Test a query
In chat, try: “Using the Fimo MCP, find ‘Preview overview’ and summarize key points.”
Install Continue
Open the Windsurf extensions panel and install Continue.
Add the server in Continue settings
Use the same configuration as VS Code:{
"mcpServers": [
{
"name": "fimo-docs",
"type": "sse",
"url": "https://docs.fimo.ai/mcp"
}
]
}
Reload Windsurf
Reload the window to apply changes and test a query.
Install Cline
Install the Cline extension in VS Code or Cursor.
Configure MCP servers
Add the Fimo server using SSE in Cline settings JSON:{
"mcpServers": [
{
"name": "fimo-docs",
"type": "sse",
"url": "https://docs.fimo.ai/mcp"
}
]
}
Restart and verify
Reload the window, then ask Cline to list MCP resources.
Open Settings JSON
In Zed, open Settings and switch to the JSON view.
Register the server
Add an entry under the MCP servers section:{
"mcp": {
"servers": {
"fimo-docs": {
"transport": { "type": "sse", "url": "https://docs.fimo.ai/mcp" }
}
}
}
}
Restart Zed
Restart Zed and run a quick test query.
ChatGPT does not support external MCP servers at this time. Use Claude Desktop or an IDE client like Continue if you need MCP features.
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?