Skip to main content
Glama

Karakeep MCP server

by karakeep-app
trpc.ts600 B
import { trpcServer } from "@hono/trpc-server"; import { Hono } from "hono"; import { Context } from "@karakeep/trpc"; import { appRouter } from "@karakeep/trpc/routers/_app"; const trpc = new Hono<{ Variables: { ctx: Context; }; }>().use( "/*", trpcServer({ endpoint: "/api/trpc", router: appRouter, createContext: (_, c) => { return c.var.ctx; }, onError: ({ path, error }) => { if (process.env.NODE_ENV === "development") { console.error(`❌ tRPC failed on ${path}`); } console.error(error); }, }), ); export default trpc;

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/karakeep-app/karakeep'

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