drio
Open app

Flow MCP Server

Source

Model Context Protocol (MCP) server for Flow blockchain with direct RPC communication

Catalog onlyCatalog onlySTDIO

Overview

Flow MCP Server is a Model Context Protocol (MCP) server designed for the Flow blockchain, enabling direct RPC communication for various blockchain interactions.

To use Flow MCP Server, clone the repository from GitHub, install the necessary dependencies, and start the server using the provided commands. You can also run it directly using npx without installation.

  • Retrieve account balances for FLOW and tokens - Execute Flow scripts - Send transactions to the Flow blockchain - Resolve domains to Flow addresses - Interact with Flow contracts - Full compliance with MCP for AI agent integration
  1. Managing and querying blockchain accounts and balances.
  2. Executing smart contracts on the Flow blockchain.
  3. Integrating with AI assistants that utilize the Model Context Protocol.

Add to your AI client

Use these steps to connect Flow MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "flow-mcp-server-outblock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flow-mcp-server-outblock"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "flow-mcp-server-outblock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flow-mcp-server-outblock"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "flow-mcp-server-outblock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flow-mcp-server-outblock"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "flow-mcp-server-outblock": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flow-mcp-server-outblock"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "flow-mcp-server-outblock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flow-mcp-server-outblock"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "flow-mcp-server-outblock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-flow-mcp-server-outblock"
      ]
    }
  }
}

FAQ

What is the default network used by Flow MCP Server?

The server defaults to the Flow mainnet but can be configured to use the testnet.

Can I run the server without installing it?

Yes! You can run the server directly using npx.

What programming language is Flow MCP Server written in?

Flow MCP Server is written in JavaScript.