We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ai-debugger/aidb'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•378 B
"""MCP Starters - Language-specific debugging guidance generators.
This subpackage provides language and framework-specific debugging examples
and guidance for the MCP start tool, without requiring session initialization.
"""
from __future__ import annotations
from .base import BaseStarter
from .registry import StarterRegistry
__all__ = ["BaseStarter", "StarterRegistry"]