Skip to main content
Glama

Karakeep MCP server

by karakeep-app
users.ts432 B
import { Hono } from "hono"; import { authMiddleware } from "../middlewares/auth"; const app = new Hono() .use(authMiddleware) // GET /users/me .get("/me", async (c) => { const user = await c.var.api.users.whoami(); return c.json(user, 200); }) // GET /users/me/stats .get("/me/stats", async (c) => { const stats = await c.var.api.users.stats(); return c.json(stats, 200); }); export default app;

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