Karakeep MCP Server
Search for and create bookmarks in Karakeep (Hoarder).
README
Karakeep (Hoarder) MCP Server
This project provides a Mind Control Panel (MCP) compatible server that allows interactions (searching and creating bookmarks) with the Karakeep bookmarking service via its API.
It's designed to be used by Large Language Models (LLMs) or other clients capable of making HTTP requests according to the MCP protocol defined by services like Glama.ai.
Features
- Search Bookmarks: Find existing bookmarks in Karakeep based on a query string.
- Create Bookmarks: Add new bookmarks to Karakeep with a URL and optional title/description.
- MCP Compatible Endpoint: Exposes a single
/mcpendpoint for actions. - Environment Variable Configuration: Securely configure your Hoarder API key.
Prerequisites
- Python 3.8+
- A Karakeep account and API Key (See Karakeep API Docs)
- Access to a hosting platform (e.g., Render, Heroku, Fly.io, VPS) or Docker for deployment.
Setup and Local Development
-
Clone the repository:
git clone <your-repository-url> cd hoarder-mcp-server -
Create a virtual environment (recommended):
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate` -
Install dependencies:
pip install -r requirements.txt -
Configure Environment Variables:
- Create a file named
.envin the project root. - Add your Hoarder API key to it:
HOARDER_API_KEY="YOUR_HOARDER_API_KEY_HERE" - Important: Make sure
.envis listed in your.gitignorefile to avoid committing secrets.
- Create a file named
-
Run the server locally:
uvicorn main:app --reload --port 8000The server will be available at
http://127.0.0.1:8000. The--reloadflag automatically restarts the server when code changes are detected.
API Usage
The server exposes a single POST endpoint: /mcp.
Request Body (JSON):
{
"action": "action_name",
"parameters": {
"param1": "value1",
"param2": "value2"
// ... action-specific parameters
}
}
<a href="https://glama.ai/mcp/servers/@jcrabapple/hoarder-mcp-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@jcrabapple/hoarder-mcp-server/badge" /> </a>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.