Claude Historian Mcp
📜 An MCP server for conversation history search and retrieval in Claude Code
Give your agent eyes. Search video, images, and audio via the Mixpeek multimodal retrieval API.
{
"mcpServers": {
"io-github-mixpeek-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Give your agent eyes. Search video, images, and audio via the Mixpeek multimodal retrieval API.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 1 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationNo known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
📜 An MCP server for conversation history search and retrieval in Claude Code
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
Official MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
MCP Security Weekly
Get CVE alerts and security updates for io.github.mixpeek/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A lightweight, production-friendly Model Context Protocol (MCP) server for Mixpeek that:
Authorization and X-Namespace headersPython (PyPI):
# global (recommended)
pipx install mixpeek-mcp
# or in a venv
python -m venv .venv && source .venv/bin/activate
pip install mixpeek-mcp
npm (Node):
# run once
npx @mixpeek/mcp
# or install globally
npm i -g @mixpeek/mcp
Homebrew (macOS):
# tap and install (once the tap is live)
brew tap mixpeek/tap https://github.com/mixpeek/homebrew-tap
brew install mixpeek-mcp
# temporary local formula (dev/testing):
brew install --build-from-source Formula/mixpeek-mcp.rb
cp env.sample .env
# edit as needed
Env vars:
MIXPEEK_API_KEY: Your Mixpeek API key (optional if endpoints don't require auth)MIXPEEK_API_BASE: Default https://api.mixpeek.comMIXPEEK_OPENAPI_URL: Defaults to <API_BASE>/openapi.json (or /docs/openapi.json)MIXPEEK_NAMESPACE: Optional namespace value to send via X-NamespaceMCP_RATE_MAX_CALLS: Default 20 per MCP_RATE_PER_SECONDSMCP_RATE_PER_SECONDS: Default 10MCP_CONNECT_TIMEOUT: Default 5MCP_READ_TIMEOUT: Default 30# PyPI
mixpeek-mcp
# from source
python server.py
# npm
mixpeek-mcp
Your MCP client (e.g., Claude Desktop) can attach to this server via stdio.
docker build -t mixpeek-mcp:latest .
docker run --rm -it \
-e MIXPEEK_API_KEY=sk_... \
-e MIXPEEK_NAMESPACE=your_namespace \
mixpeek-mcp:latest
Or pull and run (once published):
docker run --rm -it \
-e MIXPEEK_API_KEY=sk_... \
-e MIXPEEK_NAMESPACE=your_namespace \
ghcr.io/mixpeek/mcp:latest
@mixpeek/mcp → https://www.npmjs.com/package/@mixpeek/mcpmixpeek-mcp → https://pypi.org/project/mixpeek-mcp/ (publish pending)mixpeek/mcp (pending push), GHCR: ghcr.io/mixpeek/mcp (pending push)mixpeek/tap/mixpeek-mcp (tap repo to be created)We prepared registry.json compatible with the Official Docker MCP Registry. To submit:
registry.json (update Docker image reference if you publish under a different org/tag).Required for write-protected endpoints:
MIXPEEK_API_KEY: Authorization: Bearer <key>Optional:
MIXPEEK_NAMESPACE: sets X-Namespace for isolationMIXPEEK_API_BASE: defaults to https://api.mixpeek.com; testing: https://server-xb24.onrender.comMIXPEEK_OPENAPI_URL: defaults to <API_BASE>/openapi.json (or /docs/openapi.json)MCP_RATE_MAX_CALLS / MCP_RATE_PER_SECONDS: simple token bucketMCP_CONNECT_TIMEOUT / MCP_READ_TIMEOUT: request timeoutsoperationIdquery/body envelopeUnit tests:
pip install -r requirements.txt
pytest -q
Live test (optional):
export LIVE_MIXPEEK_API_KEY=sk_...
export LIVE_MIXPEEK_OPENAPI_URL=htt
... [View full README on GitHub](https://github.com/mixpeek/mcp-server#readme)