MCP Integration
1 Install
Terminal
$ npm install -g @oris/mcp-server
2 Claude Desktop
config.json
"mcpServers": {
"oris": {
"command": "npx",
"args": ["@oris/mcp-server"],
"env": {
"ORIS_API_KEY": "oris_sk_live_...",
"ORIS_API_SECRET": "oris_ss_live_..."
}
}
}
3 OpenAI
Python
from openai.mcp import MCPClient
mcp = MCPClient(server_command="npx @oris/mcp-server",
env={"ORIS_API_KEY": "oris_sk_live_..."})
4 Example Flow
Conversation
User: "Register my bot and pay $12.50"
Agent calls: oris_register_agent
Agent calls: oris_verify_agent
Agent calls: oris_create_wallet chain=base
Agent calls: oris_set_policy maxPerTx=50
Agent calls: oris_send_payment amount=12.50
Agent: Payment submitted. Status: pending.
See MCP Server docs for all 13 tools.