We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MaykolMedrano/mcp_bcrp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run.py•208 B
#!/usr/bin/env python
"""
MCP BCRP Server Entry Point.
This script allows running the server directly from the source directory.
"""
from mcp_bcrp.server import mcp
if __name__ == "__main__":
mcp.run()