Skip to main content
Glama

Extend AI Toolkit MCP Server

Official
interfaces.py424 B
from typing import Protocol from typing_extensions import TypeVar from .api import ExtendAPI from .tools import Tool ToolType = TypeVar("ToolType", covariant=True) AgentToolType = TypeVar("AgentToolType", bound="AgentToolInterface[ToolType]") class AgentToolInterface(Protocol[ToolType]): def __init__(self, extend_api: ExtendAPI, tool: Tool) -> None: ... def build_tool(self) -> ToolType: ...

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/paywithextend/extend-ai-toolkit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server