We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iceener/linear-streamable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { HttpBindings } from '@hono/node-server';
import { Hono } from 'hono';
export function healthRoutes() {
const app = new Hono<{ Bindings: HttpBindings }>();
app.get('/health', (c) => {
return c.json({
status: 'ok',
timestamp: new Date().toISOString(),
transport: 'streamable-http',
endpoints: { mcp: '/mcp', health: '/health' },
});
});
return app;
}