mindcore-mcp
Enables AI-powered chat and DeFi operations (swap, transfer) via MCP-compliant tools, integrating with LLMs for onchain actions.
README
Mindcore MCP Server
MCP (Model Context Protocol) server for onchain chat, DeFi operations, and AI model integration.
Overview
This library provides a framework for AI-powered chat and DeFi operations (swap, transfer) via MCP-compliant tools. It is designed for seamless integration with AI models and LLM tool providers.
Features
- AI Chat Agents: Analyst and Trader Copilot powered by OpenAI.
- DeFi Operations: Swap tokens (Uniswap), transfer ETH/ERC20.
- Intent Parsing: Natural language understanding for DeFi actions.
- MCP Tool Manifest: Ready for LLM/AI tool integration.
- Framework Agnostic: Use with Express, Fastify, h3, or any Node.js backend.
Installation
npm install mindcore-mcp
Usage
Basic Example
import { createChatHandler, swapHandler, transferHandler } from 'mindcore-mcp';
// Example: Express.js
app.post('/api/chat', createChatHandler());
// Example: Direct function call
const chatResponse = await chatHandler({
messages: [{ role: 'user', content: 'Swap 1 ETH to USDC' }],
agentId: 2
});
const swapResponse = await swapHandler({
from: 'ETH',
to: 'USDC',
amount: '1',
userAddress: '0xYourAddress'
});
Running the Server
You can run the Mindcore MCP Server as a standalone HTTP server:
npx mindcore-mcp
This will start the server on the default port (3000). You can set a custom port with the PORT environment variable.
MCP Tools
| Tool | Description | Example Use Case |
|---|---|---|
chat |
AI-powered chat with intent parsing | "What is the price of ETH?" |
swap |
Swap tokens via Uniswap | "Swap 1 ETH to USDC" |
transfer |
Transfer ETH or ERC20 tokens | "Send 10 USDC to 0xabc..." |
Environment Variables
| Variable | Description |
|---|---|
OPENAI_API_KEY |
Your OpenAI API key |
RPC_URL |
Ethereum RPC URL |
UNISWAP_ROUTER_ADDRESS |
Uniswap router contract address |
WETH_ADDRESS |
(Optional) WETH contract address |
Copy .env.example to .env and fill in your values.
Usage with LLM Tools
The Mindcore MCP Server exposes the following MCP-compliant tools for LLMs:
chat
Endpoint: POST /api/chat
Input:
{
"messages": [
{ "role": "user", "content": "Swap 1 ETH to USDC" }
],
"agentId": 2
}
Output:
{
"reply": "swap_intent",
"swap": { "amount": "1", "from": "ETH", "to": "USDC" },
"message": "You want to swap 1 ETH to USDC. Please confirm the swap."
}
swap
Endpoint: POST /api/swap
Input:
{
"from": "ETH",
"to": "USDC",
"amount": "1",
"userAddress": "0xYourAddress"
}
Output: Returns transaction data for the swap.
transfer
Endpoint: POST /api/transfer
Input:
{
"token": "USDC",
"amount": "10",
"recipient": "0xRecipientAddress",
"userAddress": "0xYourAddress"
}
Output: Returns transaction data for the transfer.
Registering Tools with LLMs
To use these tools with an LLM, add them to your tool manifest or configuration. Example (pseudo-config):
{
"mcpServers": {
"mindcore": {
"command": "npx",
"args": [
"mindcore-mcp"
],
"env": {
"OPENAI_API_KEY": "your_openai_api_key",
"RPC_URL": "your_rpc_url",
"UNISWAP_ROUTER_ADDRESS": "your_router_address"
}
}
}
}
Prompting Tips:
- Instruct the LLM to use the
chat,swap, andtransfertools for onchain actions. - Provide the tool descriptions and example calls in your LLM's tool registry.
Development
# Build the package
npm run build
# Run tests (if implemented)
npm test
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。