OASIS Unified MCP Server
This server integrates the OASIS, OpenSERV, and STAR platforms to provide tools for managing digital identities, minting NFTs, and orchestrating AI agent workflows. It also supports smart contract generation across multiple blockchains and direct Solana RPC operations for transaction management.
README
OASIS Unified MCP Server
Unified Model Context Protocol (MCP) server for interacting with OASIS, OpenSERV, and STAR platforms.
🚀 Quick Start
1. Install Dependencies
cd MCP
npm install
2. Configure Environment
Create a .env file:
# Copy the example
cp env.example .env
# Edit .env with your settings
# OASIS_API_URL=http://localhost:5000
# OASIS_API_KEY=your_api_key_here (optional)
3. Build
npm run build
4. Run in Development
npm run dev
5. Configure Cursor
Create or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"oasis-unified": {
"command": "node",
"args": ["/Users/maxgershfield/OASIS_CLEAN/MCP/dist/index.js"],
"env": {
"OASIS_API_URL": "http://localhost:5000",
"OASIS_API_KEY": "your_api_key_here"
}
}
}
}
Important: Use absolute paths in the config file.
6. Restart Cursor
Restart Cursor IDE to load the MCP server.
📋 Available Tools
OASIS Tools
Read Operations
oasis_get_avatar- Get avatar by ID, username, or emailoasis_get_karma- Get karma score for avataroasis_get_nfts- Get all NFTs for avataroasis_get_nft- Get NFT details by IDoasis_get_wallet- Get wallet for avataroasis_get_holon- Get holon (data object) by IDoasis_health_check- Check OASIS API health
Create/Write Operations ✨
oasis_register_avatar- Create a new avataroasis_authenticate_avatar- Authenticate (login) and get JWT tokenoasis_mint_nft- Mint a new NFT on Solanaoasis_create_nft- Single command: authenticate → Glif image → mint (use this for consistent NFT creation)
See AGENT_NFT_MINT_WORKFLOW.md for the full workflow (single MCP command + curl).
oasis_save_holon- Create or update a holon (data object)oasis_update_avatar- Update avatar informationoasis_create_wallet- Create a wallet for an avatar (basic)oasis_create_wallet_full- Create wallet with full options (recommended)oasis_set_default_wallet- Set default wallet for an avataroasis_send_transaction- Send tokens between avatars/addresses
See WALLET_CREATION_GUIDE.md for detailed wallet creation instructions.
A2A Protocol & SERV Infrastructure Tools 🤖
Complete Agent Workflow
oasis_authenticate_avatar- Authenticate as a User or Wizard avatar (the owner)oasis_register_avatar- Create an Agent avatar (setavatarType: "Agent") - Requires authentication from User/Wizardoasis_authenticate_avatar- Authenticate as the Agent avatar to get JWT tokenoasis_register_agent_capabilities- Register agent services and skills (agent manages itself)oasis_register_agent_as_serv_service- Register agent in SERV infrastructureoasis_discover_agents_via_serv- Discover registered agents (no auth required)oasis_get_my_agents- Get all agents owned by authenticated user (requires User/Wizard auth)
Agent Discovery
oasis_get_agent_card- Get agent card by IDoasis_get_all_agents- List all A2A agentsoasis_get_agents_by_service- Find agents by service nameoasis_get_my_agents- Get agents owned by authenticated user (requires auth)oasis_discover_agents_via_serv- Discover agents via SERV infrastructure
Agent Registration
oasis_register_agent_capabilities- Register agent capabilities (requires auth)oasis_register_agent_as_serv_service- Register agent as SERV service (requires auth + capabilities)
A2A Communication
oasis_send_a2a_jsonrpc_request- Send JSON-RPC 2.0 requests (ping, payment_request, etc.)oasis_get_pending_a2a_messages- Get pending messages for agentoasis_mark_a2a_message_processed- Mark message as processed
OpenSERV Integration
oasis_register_openserv_agent- Register OpenSERV AI agent as A2A agentoasis_execute_ai_workflow- Execute AI workflows via A2A Protocol
See A2A_SERV_INTEGRATION.md for detailed documentation.
Smart Contract Generator Tools 🔨
scgen_generate_contract- Generate smart contract from JSON specificationscgen_compile_contract- Compile smart contract source codescgen_deploy_contract- Deploy compiled contract to blockchainscgen_generate_and_compile- Generate and compile in one stepscgen_get_cache_stats- Get compilation cache statistics
Supported Blockchains:
- Ethereum (Solidity)
- Solana (Rust/Anchor)
Solana RPC Tools ⚡
Direct Solana blockchain operations via RPC (bypasses OASIS API):
solana_send_sol- Send SOL tokens directly via Solana RPCsolana_get_balance- Get SOL balance for a wallet addresssolana_get_transaction- Get transaction details by signature
See SOLANA_RPC_ENDPOINTS.md for detailed documentation.
- Radix (Scrypto)
🧪 Testing
Test the MCP server directly:
# Run in dev mode (with logs)
npm run dev
# In another terminal, test with echo
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | npm run dev
🔧 Development
Watch Mode
npm run watch
Build for Production
npm run build
npm start
📝 Example Usage in Cursor
Once configured, you can ask Cursor:
Read Operations
- "Get avatar information for username 'testuser'"
- "Show me all NFTs for avatar ID abc123"
- "What's the karma score for avatar xyz789?"
- "Check OASIS API health"
Create/Write Operations ✨
- "Create a new avatar with username 'alice', email 'alice@example.com', password 'secure123'"
- "Mint an NFT with metadata URL 'https://example.com/nft.json' and symbol 'MYNFT'"
- "Create a holon with name 'MyData' and description 'Test data'"
- "Create an Ethereum wallet for avatar abc123"
- "Send 100 tokens from avatar abc123 to avatar xyz789"
A2A/SERV Operations 🤖
- "Discover SERV agents that provide data analysis services"
- "Get the agent card for agent abc-123"
- "Register my agent with capabilities for data analysis and Python skills"
- "Send a payment request for 0.01 SOL to agent xyz-789"
- "Show me all pending A2A messages"
- "Execute an AI workflow to analyze this data"
Smart Contract Operations 🔨
- "Generate a Solana smart contract from this JSON spec: {programName: 'token_vesting', ...}"
- "Compile this Solidity contract: [contract code]"
- "Deploy this compiled contract to Ethereum"
- "Generate and compile a token vesting contract for Solana"
🐛 Troubleshooting
MCP Server Not Found
- Check that the path in
~/.cursor/mcp.jsonis absolute - Verify the file exists:
ls -la /Users/maxgershfield/OASIS_CLEAN/MCP/dist/index.js - Check file permissions:
chmod +x /Users/maxgershfield/OASIS_CLEAN/MCP/dist/index.js
Connection Errors
- Verify OASIS API is running:
curl http://localhost:5000/api/health - Check environment variables in
.env - Check Cursor logs: View → Output → MCP
Build Errors
- Ensure Node.js 20+ is installed:
node --version - Clear node_modules and reinstall:
rm -rf node_modules && npm install
📚 Documentation
- A2A_SERV_INTEGRATION.md - Complete guide to A2A Protocol & SERV Infrastructure tools
- ENDPOINT_INVENTORY.md - Full list of available endpoints and MCP tools
- HOW_TO_USE_MCP.md - Detailed usage guide
📚 Next Steps
- [x] ✅ Add A2A Protocol & SERV Infrastructure tools
- [ ] Add STAR dApp creation tools
- [ ] Add more OpenSERV workflow tools
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。