Provides access to the source code repository for local development, cloning, and contribution to the Flow MCP server.
Allows installation and running of the Flow MCP server through the npm package manager using npx or local installation methods.
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
.findand.fndomainsScript execution for reading blockchain data
Transaction submission and monitoring
Account information retrieval
Flow configuration based on environment variables
Related MCP server: n8n MCP Server
Installation
Using npx (Recommended)
Or specify HTTP mode with a port:
Local Installation (For Development)
Usage
Running with npx
Running Local Development Server
Configuration
The server can be configured using environment variables:
PORT- HTTP port to listen on (if not set, defaults to stdio mode)FLOW_NETWORK- Flow network to connect to (mainnet, testnet, emulator)FLOW_ACCESS_NODE- Custom Flow access node URLLOG_LEVEL- Logging level (debug, info, warn, error)
Using with AI Assistants
When integrating with AI assistants like Claude, you can start the MCP server in stdio mode and connect it to your assistant's tool configuration.
Example Claude tool configuration:
HTTP API Endpoints
When running in HTTP mode, the following endpoints are available:
/sse- Server-Sent Events endpoint for real-time updates/messages- POST endpoint for sending tool requests/health- Health check endpoint/- Server information
Example HTTP API call:
Available Tools
get_balance- Get Flow balance for an addressget_token_balance- Get fungible token balanceget_account- Get account informationresolve_domain- Resolve a .find or .fn domain to an addressexecute_script- Execute a Cadence scriptsend_transaction- Send a transaction to the blockchainget_transaction- Get transaction details by ID
Version History
v0.1.1 - Bug fix for formatArguments import issue in transaction service
v0.1.0 - Initial release with basic Flow blockchain integration
License
MIT