claude-skills-mcp-backend
Heavy backend for Claude Skills MCP server with vector search (Streamable HTTP)
pinned to #2595bd6updated 2 weeks ago
Ask your AI client: “install mcps/claude-skills-mcp-backend”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install mcps/claude-skills-mcp-backendmetahub onboarded this repo on the author's behalf.
If you own github.com/K-Dense-AI/claude-skills-mcp on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
393
Last commit
2 weeks ago
Latest release
published
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.2595bd6· 2 weeks ago
Documentation
41Description quality
12 words · 79 chars — OK but more detail helps
README is present and substantial
9,287 chars · 12 sections · 3 code blocks
Tags / topics declaredwarn
No manifest tags and no GitHub repo topics
Add tags to the manifest (or GitHub topics on the repo) so the registry's search and category filters surface this artifact.
README has usage / example sections
found: Quick Start
Homepage / docs URL declared
no homepage declared (registry will use the repo URL) — info-only, not blocking
Release history
1- releasecurrent2595bd6warn2 weeks ago
Contents
Heavy backend server for Claude Skills MCP system with vector search capabilities.
Overview
This is the backend component of the Claude Skills MCP system. It provides:
- Vector-based semantic search using sentence-transformers
- Skill indexing and retrieval
- MCP protocol via Streamable HTTP transport
- Background skill loading from GitHub and local sources
Note: This package is typically auto-installed by the frontend (claude-skills-mcp). You only need to install it manually for:
- Remote deployment (hosting your own backend)
- Development and testing
- Standalone usage without the frontend proxy
Installation
# Via uv (recommended)
uv tool install claude-skills-mcp-backend
# Via uvx (one-time use)
uvx claude-skills-mcp-backend
# Via pip
pip install claude-skills-mcp-backend
Usage
Run Standalone Server
# Default (localhost:8765)
claude-skills-mcp-backend
# Custom port
claude-skills-mcp-backend --port 8080
# For remote access
claude-skills-mcp-backend --host 0.0.0.0 --port 8080
# With custom configuration
claude-skills-mcp-backend --config my-config.json
# Verbose logging
claude-skills-mcp-backend --verbose
Configuration
# Print example configuration
claude-skills-mcp-backend --example-config > config.json
# Edit config.json to customize skill sources, embedding model, etc.
# Run with custom config
claude-skills-mcp-backend --config config.json
Endpoints
When running, the backend exposes:
- Streamable HTTP MCP:
http://localhost:8765/mcp - Health Check:
http://localhost:8765/health
Docker Deployment
Build Image
docker build -t claude-skills-mcp-backend .
Run Container
# For local access
docker run -p 8765:8765 claude-skills-mcp-backend
# For remote access
docker run -p 8080:8765 \
-e HOST=0.0.0.0 \
claude-skills-mcp-backend --host 0.0.0.0 --port 8765
Dependencies
This package includes heavy dependencies (~250 MB):
- PyTorch (CPU-only on Linux): ~150-200 MB
- sentence-transformers: ~50 MB
- numpy, httpx, fastapi, uvicorn: ~30 MB
First download may take 60-180 seconds depending on your internet connection.
Performance
- Startup time: 2-5 seconds (with cached dependencies)
- First search: +2-5 seconds (embedding model download, one-time)
- Query time: <1 second after models loaded
- Memory usage: ~500 MB
Development
# Clone the monorepo
git clone https://github.com/K-Dense-AI/claude-skills-mcp.git
cd claude-skills-mcp/packages/backend
# Install in development mode
uv pip install -e ".[test]"
# Run tests
uv run pytest tests/
Related Packages
- claude-skills-mcp (Frontend): Lightweight proxy that auto-installs this backend
- Main Repository: https://github.com/K-Dense-AI/claude-skills-mcp
License
Apache License 2.0
Copyright 2025 K-Dense AI (https://k-dense.ai)
Reviews
No reviews yet. Be the first.
Related
@kryptosai/mcp-observatory
GitHub-native CI, SARIF, Code Scanning, and security gates for MCP servers before agents depend on them.
codex-control-plane-mcp
Durable MCP control plane for long-running Codex Desktop tasks.
Graphify
AI coding assistant skill (Claude Code, CodeBuddy, Codex, OpenCode, Kilo Code, Cursor, Gemini CLI, Aider, OpenClaw, Factory Droid, Trae, Hermes, Kiro, Pi, Devin CLI, Google Antigravity) - turn any folder of code, docs, papers, images, or videos into a queryable knowledge graph
mh install mcps/claude-skills-mcp-backend