Skip to main content
Glama

Extend AI Toolkit MCP Server

Official
models.py445 B
from dataclasses import dataclass from typing import Optional, TypedDict from .enums import Product class Actions(TypedDict, total=False): create: Optional[bool] update: Optional[bool] read: Optional[bool] @dataclass class Scope: type: Product actions: Actions @staticmethod def from_str(product_str: str, actions_str: str) -> "Scope": return Scope(Product(product_str), Actions(**{actions_str: True}))

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