Skip to main content
Glama

Ethora MCP Server

by dappros
index.ts823 B
#!/usr/bin/env node import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { registerTools } from "./tools.js"; export const server = new McpServer( { name: "Ethora MCP Server", version: "1.0.0", } ); registerTools(server); async function runServer() { try { console.error("Attempting to start Ethora MCP Server."); const transport = new StdioServerTransport(); await server.connect(transport); console.error("Successfully started Ethora MCP Server."); } catch (error) { console.error("Failed to start Ethora MCP Server.", error); process.exit(1); } } runServer().catch((error) => { console.error("Failed to start Graphlit MCP Server.", 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/dappros/ethora-mcp-server'

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