Flow MCP Server

by MCP-Mirror

232 downloads
Not rated
GitHub

About

Flow MCP Server is a Model Context Protocol (MCP) server that enables AI assistants to interact with the Flow blockchain. It provides a standardized interface for reading blockchain data, checking balances, resolving domains, executing scripts, and submitting transactions.

Details

Author
MCP-Mirror
Downloads
232
Categories
Other

- Check Flow and fungible token balances
- Resolve .find and .fn domain names
- Execute Cadence scripts on the blockchain
- Send and monitor transactions
- Retrieve account information
- Configurable via environment variables

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Flow MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install and run it via npx -y @outblock/flow-mcp-server --stdio for AI assistant integration, or with --port 3000 to run as an HTTP server. Configure the Flow network and access node using environment variables like FLOW_NETWORK and FLOW_ACCESS_NODE. For development, clone the repository, run npm install, npm run build, and npm start.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

McpServers

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

Flow MCP Server

A Model Context Protocol (MCP) server for interacting with the Flow blockchain. This server enables AI assistants to access Flow blockchain data and perform operations through a standardized interface.

Features

- Balance checking for Flow and fungible tokens
- Domain resolution for .find and .fn domains
- Script execution for reading blockchain data
- Transaction submission and monitoring
- Account information retrieval
- Flow configuration based on environment variables

Installation

Using npx (Recommended)

npx -y @outblock/flow-mcp-server --stdio

Or specify HTTP mode with a port:

npx -y @outblock/flow-mcp-server --port 3000

Local Installation (For Development)

git clone https://github.com/lmcmz/flow-mcp-server.git
cd flow-mcp-server
npm install
npm run build
npm start

Usage

Running with npx

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.