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
create_context.py•367 B
from pydantic import BaseModel, StrictStr
from pydantic import Field
from typing import Optional
class CreateContext(BaseModel):
cwd: Optional[StrictStr] = Field(
default="/home/user",
description="Current working directory",
)
language: Optional[StrictStr] = Field(
default="python", description="Language of the context"
)