We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/outris-dev-user/Outris-Identity'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
context.py•266 B
from contextvars import ContextVar
from typing import Optional
from .auth import MCPAccount
# Context variable to hold the current MCP account during request processing
current_account: ContextVar[Optional[MCPAccount]] = ContextVar("current_account", default=None)