We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deflang/infura-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
import { ExpressHttpStreamableMcpServer } from "./server.js";
import { tools } from "./tools/index.js";
export const servers = ExpressHttpStreamableMcpServer(
{ name: "infura-mcp" },
(server) => {
for (const tool of tools) {
server.tool(tool.name, tool.description, tool.schema, tool.handler);
}
}
);