We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Xiawpohr/mcpilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { FastMCP } from "fastmcp";
import { registerChainlistTools } from "./tools/index.js";
const server = new FastMCP({
name: "Chainlist",
version: "1.0.0",
});
registerChainlistTools(server);
async function main() {
try {
await server.start({
transportType: "stdio",
});
} catch (error) {
console.error("Error starting server:", error);
process.exit(1);
}
}
main();