We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bobmatnyc/mcp-skills'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""MCP Skills - Dynamic RAG-powered skills for code assistants.
This package provides intelligent, context-aware skills to code assistants
via the Model Context Protocol (MCP) using hybrid RAG (vector + knowledge graph).
"""
from pathlib import Path
__version__ = "0.1.0"
__author__ = "MCP Skills Team"
__license__ = "MIT"
# Read version from VERSION file
_version_file = Path(__file__).parent / "VERSION"
if _version_file.exists():
__version__ = _version_file.read_text().strip()
__all__ = [
"__version__",
"__author__",
"__license__",
]