Claude Skills MCP Server — Summary
Claude Skills MCP Server is a Python-based MCP server that brings Anthropic's Agent Skills framework to any MCP-compatible AI assistant via semantic vector search. It uses a two-package architecture (lightweight claude-skills-mcp frontend proxy + heavy claude-skills-mcp-backend with PyTorch/sentence-transformers) so that Cursor and other clients receive an instant response while the 250 MB RAG backend downloads in the background. The server ships three MCP tools: find_helpful_skills (semantic search), read_skill_document (progressive content loading), and list_skills (inventory). It indexes from Anthropic's official skills repository plus K-Dense AI's scientific skills (~90 skills at default config), with configurable additional GitHub or local sources. The README notes the server is now archived — "Agent Skills have been natively adopted by all major AI platforms" — making this an early MCP-bridge experiment rather than an active project.
differs_from_seeds: Closest to ccmemory (Archetype 3: MCP-anchored toolserver), but where ccmemory provides a graph-memory backend, claude-skills-mcp provides a semantic-search index over skill markdown files. Unlike taskmaster-ai (also MCP-anchored), it has no workflow orchestration and no task tracking — it is purely a discovery/retrieval layer. Unlike all 11 seeds, it ships a split two-binary architecture (proxy + backend) to work around MCP client timeout constraints.