Armor Crypto MCP is a comprehensive integration platform that brings cryptocurrency functionality to AI agents. It provides tools for wallet management, token swaps, specialized trades, and multi-chain support, currently focusing on Solana in its Alpha version with plans to expand to other blockchains in the future.
Make sure you have Python installed on your system.
For Linux/Windows:
pip install uv
For Mac:
brew install uv
You need to have an Armor NFT to get an API key. Get your NFT from Armor Wallet Codex.
To use the Armor MCP with your AI agent, you need to add the following configuration, replacing <PUT-YOUR-KEY-HERE>
with your actual API key:
{
"mcpServers": {
"armor-crypto-mcp": {
"command": "uvx",
"args": ["armor-crypto-mcp@latest", "--version"],
"env": {
"ARMOR_API_KEY": "<PUT-YOUR-KEY-HERE>"
}
}
}
}
armor-crypto-mcp
configurationMCP Servers
button in the Cline tab in VSCode's left panelConfigure MCP Servers
armor-wallet-mcp
configurationDone
under the MCP Servers
tab and start chatting...
next to your username (bottom-left) and select Settings
Community nodes
then Install a Community Node
npm Package Name
fieldMCP Nodes
List Tools
)Parameters
tab, click Select Credential
and then Create new credential
uvx
under Command
armor-crypto-mcp
under Arguments
Environments
enter ARMOR_API_KEY=
followed by your full API keyParameters
tab, choose the MCP Operation
for that NodeAfter setting up Armor MCP with your preferred platform, you can begin interacting with cryptocurrency functionality through your AI agent. For example, you can manage wallets, execute swaps, set up DCA strategies, and check token information, all through natural language instructions to your agent.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.