We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BIGPPWONG/EdgeBox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
context.py•357 B
from pydantic import BaseModel, StrictStr
from pydantic import Field
class Context(BaseModel):
id: StrictStr = Field(description="Context ID")
language: StrictStr = Field(description="Language of the context")
cwd: StrictStr = Field(description="Current working directory of the context")
def __hash__(self):
return hash(self.id)