Skip to main content
Glama
index.js1.5 kB
#!/usr/bin/env node /** * Osmosis MCP Server v2.0.0 - Modular Architecture * * A comprehensive Model Context Protocol server for the Osmosis blockchain * providing access to pools, staking, governance, DeFi features, and more. * * Features: * - 25+ blockchain query tools across 6 categories * - Modular architecture for easy maintenance and expansion * - Type-safe validation and error handling * - Network-agnostic configuration (mainnet/testnet) * - Comprehensive API coverage of Osmosis ecosystem */ import { OsmosisMCPServer } from './server.js'; import { toolCounts } from './tools/index.js'; async function main() { try { console.error('🌊 Initializing Osmosis MCP Server...'); console.error(`📊 Loading ${toolCounts.total} tools across ${Object.keys(toolCounts).length - 1} categories:`); console.error(` • Blockchain: ${toolCounts.blockchain} tools`); console.error(` • Pools: ${toolCounts.pools} tools`); console.error(` • Concentrated Liquidity: ${toolCounts.concentratedLiquidity} tools`); console.error(` • Staking: ${toolCounts.staking} tools`); console.error(` • Governance: ${toolCounts.governance} tools`); console.error(` • DeFi: ${toolCounts.defi} tools`); const server = new OsmosisMCPServer(); await server.start(); } catch (error) { console.error('❌ Failed to start Osmosis MCP Server:', error); process.exit(1); } } main();

Latest Blog Posts

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/MyronKoch-dev/osmosis-mcp-server'

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