We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/i-dream-of-ai/quantconnect-mcp-jwt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from api_connection import post
from models import AccountResponse
def register_account_tools(mcp):
# Read
@mcp.tool(
annotations={
'title': 'Read account',
'readOnlyHint': True,
'openWorldHint': True
}
)
async def read_account() -> AccountResponse:
"""Read the organization account status."""
return await post('/account/read')