# Flare Developer Hub MCP Server

> Connect the Flare Developer Hub MCP server to Claude, Cursor, and other AI tools to get accurate Flare documentation in your AI assistant.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

Source: https://dev.flare.network/network/guides/flare-developer-hub-mcp-server

The Flare Developer Hub MCP server exposes the full Flare documentation to any [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) compatible AI tool. Once connected, your AI assistant can search and fetch accurate, up-to-date Flare documentation directly — no copy-pasting, no outdated context.

The server is hosted at `https://dev.flare.network/mcp`

and is available to anyone with an MCP-compatible AI client.

## Available tools[​](#available-tools "Direct link to Available tools")

The server exposes the following tools:

-   `docs_search` - full-text search across all Flare Developer Hub documentation pages.
-   `docs_fetch` - fetch the full content of a specific Flare Developer Hub documentation page.

## Setup[​](#setup "Direct link to Setup")

### Quick connect[​](#quick-connect "Direct link to Quick connect")

The fastest way to connect is directly from any page on the Flare Developer Hub. Click the **Copy page** button in the top-right corner and choose one of the MCP options from the dropdown:

-   **Copy MCP Server** — copies the MCP server URL to your clipboard.
-   **Connect to Cursor** — opens Cursor and installs the MCP server automatically.
-   **Connect to VS Code** — opens VS Code and installs the MCP server automatically.

![Copy page dropdown showing Copy MCP Server, Connect to Cursor and Connect to VS Code options](/assets/images/mcp-server-9166e6826d3c9583e59d1b88ceee9ed7.png)

### Claude Code[​](#claude-code "Direct link to Claude Code")

Run the following command to add the Flare MCP server to Claude Code:

```
claude mcp add --transport http flare-devhub https://dev.flare.network/mcp
```

To verify the server is connected:

```
claude mcp list
```

### Cursor[​](#cursor "Direct link to Cursor")

Add it directly to your Cursor MCP config file at `~/.cursor/mcp.json`:

```
{  "mcpServers": {    "flare-devhub": {      "url": "https://dev.flare.network/mcp"    }  }}
```

### Other MCP-compatible tools[​](#other-mcp-compatible-tools "Direct link to Other MCP-compatible tools")

For any tool that supports the [MCP Streamable HTTP transport](https://modelcontextprotocol.io/docs/concepts/transports), use the following endpoint:

```
https://dev.flare.network/mcp
```

Refer to your tool's documentation for instructions on adding a remote MCP server.

## Example prompts[​](#example-prompts "Direct link to Example prompts")

After connecting the server, your AI assistant can answer Flare-specific questions by searching and fetching documentation on demand.

-   `Search the Flare docs and explain how FTSO price feeds work`
    
-   `Fetch the Flare FDC getting started page and show me how to request an EVMTransaction attestation`
    
-   `Search the Flare docs for FAssets minting and summarize the steps`
    
-   `Look up the Flare network RPC endpoints from the developer hub`
    
-   `Search the Flare docs and explain how Smart Accounts work for XRPL users`
    

## Video walkthrough[​](#video-walkthrough "Direct link to Video walkthrough")

What's next

Explore [Flare AI Skills](/network/guides/flare-ai-skills) for structured domain knowledge that works alongside the MCP server.
