Skip to main content
Glama

Karakeep MCP server

by karakeep-app
seed.ts643 B
import { GlobalSetupContext } from "vitest/node"; import { getTrpcClient } from "../utils/trpc"; export async function setup({ provide }: GlobalSetupContext) { const trpc = getTrpcClient(); await trpc.users.create.mutate({ name: "Test User", email: "admin@example.com", password: "test1234", confirmPassword: "test1234", }); const { key } = await trpc.apiKeys.exchange.mutate({ email: "admin@example.com", password: "test1234", keyName: "test-key", }); provide("adminApiKey", key); return () => ({}); } declare module "vitest" { export interface ProvidedContext { adminApiKey: string; } }

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