We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Golto/pylpex-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docs.py•441 B
from app.mcp import get_mcp
mcp = get_mcp()
@mcp.resource("pylpex://documentation")
def get_documentation() -> str:
"""Pylpex language documentation and syntax guide"""
with open("assets/ressources/syntax.md", "r") as f:
return f.read()
@mcp.resource("pylpex://examples")
def get_examples() -> str:
"""Collection of working Pylpex code examples"""
return "Examples will be available soon." # TODO: Add examples