
Karakeep
STDIOMCP server for Karakeep bookmark management and organization
MCP server for Karakeep bookmark management and organization
This is the Karakeep MCP server, which is a server that can be used to interact with Karakeep from other tools.
Currently, the MCP server only exposes tools (no resources).
From NPM:
{ "mcpServers": { "karakeep": { "command": "npx", "args": [ "@karakeep/mcp", ], "env": { "KARAKEEP_API_ADDR": "https://<YOUR_SERVER_ADDR>", "KARAKEEP_API_KEY": "<YOUR_TOKEN>" } } } }
From Docker:
{ "mcpServers": { "karakeep": { "command": "docker", "args": [ "run", "-e", "KARAKEEP_API_ADDR=https://<YOUR_SERVER_ADDR>", "-e", "KARAKEEP_API_KEY=<YOUR_TOKEN>", "ghcr.io/karakeep-app/karakeep-mcp:latest" ] } } }