Skip to main content
Glama

MCP-ODOS

by IQAIcom
index.ts856 B
import { FastMCP } from "fastmcp"; import { chainIdTool } from "./tools/chain-id.js"; import { getQuoteTool } from "./tools/get-quote.js"; import { swapTool } from "./tools/swap.js"; async function main() { console.log("Initializing MCP Odos Server..."); const server = new FastMCP({ name: "IQAI Odos MCP Server", version: "0.0.1", }); server.addTool(getQuoteTool); server.addTool(swapTool); server.addTool(chainIdTool); try { await server.start({ transportType: "stdio", }); console.log("✅ IQ Odos MCP Server started successfully over stdio."); console.log("You can now connect to it using an MCP client."); } catch (error) { console.error("❌ Failed to start IQ Odos MCP Server:", error); process.exit(1); } } main().catch((error) => { console.error("❌ An unexpected error occurred:", error); process.exit(1); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/IQAIcom/mcp-odos'

If you have feedback or need assistance with the MCP directory API, please join our Discord server