We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/appliedrelevance/frappe-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•381 B
"""
Frappe MCP Server - Python implementation using FastMCP and uv.
A comprehensive Model Context Protocol server for Frappe Framework
with document operations, schema introspection, and helper tools.
"""
__version__ = "0.2.0"
__author__ = "Applied Relevance"
def main() -> None:
"""Main entry point for the MCP server."""
from .main import run_server
run_server()