You signed in with another tab or window. Reload
to refresh your session. You signed out in another tab or window. Reload
to refresh your session. You switched accounts on another tab or window. Reload
to refresh your session. Dismiss alert
142 stars
40 forks
Branches
Tags
Activity
Notifications
You must be signed in to change notification settings
master
Go to file
Code
| Name | | Name | Last commit message | Last commit date |
| --- | --- | --- | --- |
| Latest commit
-------------
History
-------
101 Commits
| | |
| .github | | .github | fix: rename format job | Mar 18, 2025 |
| ideas | | ideas | chore: clean up | Mar 21, 2025 |
| public | | public | docs: enhance README with guidelines for extending Base MCP with new β¦ | Mar 18, 2025 |
| src | | src | feat: add Alchemy API key to setup cli | Mar 27, 2025 |
| .gitignore | | .gitignore | chore: update version | Mar 13, 2025 |
| .npmignore | | .npmignore | chore: add Coinbase SDK, development tools, and update project struct⦠| Mar 6, 2025 |
| .prettierrc | | .prettierrc | format | Mar 17, 2025 |
| .yarnrc.yml | | .yarnrc.yml | initial commits | Mar 5, 2025 |
| CODE_OF_CONDUCT.md | | CODE_OF_CONDUCT.md | chore: set up prettier | Mar 17, 2025 |
| CONTRIBUTING.md | | CONTRIBUTING.md | chore: update contributing guide | Mar 18, 2025 |
| LICENSE | | LICENSE | chore: add Coinbase SDK, development tools, and update project struct⦠| Mar 6, 2025 |
| README.md | | README.md | feat: add NFT functionality (
#15
) | Mar 27, 2025 |
| eslint.config.js | | eslint.config.js | formaty | Mar 26, 2025 |
| examples.md | | examples.md | Refactor NFT tools and fix type issues | Mar 18, 2025 |
| mcp_config.json | | mcp_config.json | chore: update mcp_config.json and README.md to include Coinbase Proje⦠| Mar 13, 2025 |
| package-lock.json | | package-lock.json | 1.0.8 | Mar 27, 2025 |
| package.json | | package.json | 1.0.8 | Mar 27, 2025 |
| tsconfig.json | | tsconfig.json | chore: set up prettier | Mar 17, 2025 |
| yarn.lock | | yarn.lock | wip | Mar 24, 2025 |
| View all files | | |
A Model Context Protocol (MCP) server that provides onchain tools for AI applications like Claude Desktop and Cursor, allowing them to interact with the Base Network and Coinbase API.
This MCP server extends any MCP client's capabilities by providing tools to do anything on Base:
Onramp funds via Coinbase
Manage ERC20 tokens
The server interacts with Base, powered by Base Developer Tools and AgentKit
.
Base MCP is designed to be extensible, allowing you to add your own third-party protocols, tools, and data sources. This section provides an overview of how to extend the Base MCP server with new capabilities.
If you want to add a new tool to the Base MCP server, follow these steps:
src/tools
directory for your toolindex.ts
: Define and export your toolsschemas.ts
: Define input schemas for your toolshandlers.ts
: Implement the functionality of your toolssrc/tools/index.ts
The Base MCP server follows this structure for tools:
src/
βββ tools/
β βββ index.ts (exports toolsets)
β βββ [TOOL_NAME]/ <-------------------------- ADD DIR HERE
β β βββ index.ts (defines and exports tools)
β β βββ schemas.ts (defines input schema)
β β βββ handlers.ts (implements tool functionality)
β βββ utils/ (shared tool utilities)
When developing new tools for Base MCP:
For more detailed information on contributing to Base MCP, including adding new tools and protocols, see the CONTRIBUTING.md
file.
# Install globally
npm install -g base-mcp
# Or install locally in your project
npm install base-mcp
Once the package is installed, you can configure clients with the following command:
base-mcp --init
Clone this repository:
shell
git clone https://github.com/base/base-mcp.git
cd base-mcp
Install dependencies:
shell
npm install
Build the project:
shell
npm run build
Optionally, link it globally:
shell
npm link
Create a .env
file with your credentials:
# Coinbase API credentials
# You can obtain these from the Coinbase Developer Portal: https://cdp.coinbase.com/
COINBASE_API_KEY_NAME=your_api_key_name
COINBASE_API_PRIVATE_KEY=your_private_key
# Wallet seed phrase (12 or 24 words)
# This is the mnemonic phrase for your wallet
SEED_PHRASE=your seed phrase here
# Coinbase Project ID (for onramp functionality)
# You can obtain this from the Coinbase Developer Portal
COINBASE_PROJECT_ID=your_project_id
# Alchemy API Key (required for NFT functionality)
# You can obtain this from https://alchemy.com
ALCHEMY_API_KEY=your_alchemy_api_key
# OpenRouter API Key (optional for buying OpenRouter credits)
# You can obtain this from https://openrouter.ai/keys
OPENROUTER_API_KEY=your_openrouter_api_key
Test the MCP server to verify it's working correctly:
npm test
This script will verify that your MCP server is working correctly by testing the connection and available tools.
See the examples.md
file for detailed examples of how to interact with the Base MCP tools through Claude.
To add this MCP server to Claude Desktop:
Create or edit the Claude Desktop configuration file at:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
You can easily access this file via the Claude Desktop app by navigating to Claude > Settings > Developer > Edit Config.
Add the following configuration:
json
{
"mcpServers": {
"base-mcp": {
"command": "npx",
"args": ["base-mcp@latest"],
"env": {
"COINBASE_API_KEY_NAME": "your_api_key_name",
"COINBASE_API_PRIVATE_KEY": "your_private_key",
"SEED_PHRASE": "your seed phrase here",
"COINBASE_PROJECT_ID": "your_project_id",
"ALCHEMY_API_KEY": "your_alchemy_api_key",
"OPENROUTER_API_KEY": "your_openrouter_api_key"
},
"disabled": false,
"autoApprove": []
}
}
}
Restart Claude Desktop for the changes to take effect.
Retrieves the address for your wallet.
Example query to Claude:
"What's my wallet address?"
Lists all balances for your wallet.
Example query to Claude:
"Show me my wallet balances."
Transfers funds from your wallet to another address.
Parameters:
destination
: The address to which to transfer fundsassetId
: The asset ID to transferamount
: The amount of funds to transferExample query to Claude:
"Transfer 0.01 ETH to 0x1234567890abcdef1234567890abcdef12345678."
Deploys a smart contract to the blockchain.
Parameters:
constructorArgs
: The arguments for the contract constructorcontractName
: The name of the contract to deploysolidityInputJson
: The JSON input for the Solidity compiler containing contract source and settingssolidityVersion
: The version of the solidity compilerExample query to Claude:
"Deploy a simple ERC20 token contract for me."
Gets the vaults for a given asset on Morpho.
Parameters:
assetSymbol
: Asset symbol by which to filter vaults (optional)Example query to Claude:
"Show me the available Morpho vaults for USDC."
Calls a contract function on the blockchain.
Parameters:
contractAddress
: The address of the contract to callfunctionName
: The name of the function to callfunctionArgs
: The arguments to pass to the functionabi
: The ABI of the contractvalue
: The value of ETH to send with the transaction (optional)Example query to Claude:
"Call the balanceOf function on the contract at 0x1234567890abcdef1234567890abcdef12345678."
Gets the assets available for onramping in a given country/subdivision.
Parameters:
country
: ISO 3166-1 two-digit country code string representing the purchasing user's country of residencesubdivision
: ISO 3166-2 two-digit country subdivision code (required for US)Example query to Claude:
"What assets can I onramp in the US, specifically in New York?"
Gets a URL for onramping funds via Coinbase.
Parameters:
amountUsd
: The amount of funds to onrampassetId
: The asset ID to onrampExample query to Claude:
"I want to onramp $100 worth of ETH."
Gets the balance of an ERC20 token.
Parameters:
contractAddress
: The address of the ERC20 contractExample query to Claude:
"What's my balance of the token at 0x1234567890abcdef1234567890abcdef12345678?"
Transfers an ERC20 token to another address.
Parameters:
contractAddress
: The address of the ERC20 contracttoAddress
: The address of the recipientamount
: The amount of tokens to transferExample query to Claude:
"Transfer 10 USDC to 0x1234567890abcdef1234567890abcdef12345678."
Lists NFTs owned by a specific address.
Parameters:
ownerAddress
: The address of the owner whose NFTs to listlimit
: Maximum number of NFTs to return (default: 50)Example query to Claude:
"Show me the NFTs owned by 0x89A93a48C6Ef8085B9d07e46AaA96DFDeC717040."
Transfers an NFT to another address. Supports both ERC721 and ERC1155 standards.
Parameters:
contractAddress
: The address of the NFT contracttokenId
: The token ID of the NFT to transfertoAddress
: The address of the recipientamount
: The amount to transfer (only used for ERC1155, default: 1)Example query to Claude:
"Transfer my NFT with contract 0x3F06FcF75f45F1bb61D56D68fA7b3F32763AA15c and token ID 56090175025510453004781233574040052668718235229192064098345825090519343038548 to 0x1234567890abcdef1234567890abcdef12345678."
Buys OpenRouter credits with USDC.
Parameters:
amountUsd
: The amount of credits to buy, in USDExample query to Claude:
"Buy $20 worth of OpenRouter credits."
If you encounter issues:
Contributions are welcome! Please feel free to submit a Pull Request.
For detailed guidelines on contributing to Base MCP, including:
Please refer to our comprehensive CONTRIBUTING.md
guide.
Basic contribution steps:
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)Please make sure your code follows the existing style and includes appropriate tests.
No description, website, or topics provided.
No releases published
No packages published
You canβt perform that action at this time.