We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/y3i12/nabu_nisaba'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
markers.py•430 B
"""Markers for tool categorization."""
class ToolMarker:
"""Base class for tool markers."""
pass
class ToolMarkerOptional(ToolMarker):
"""Marker for optional tools (excluded by default)."""
pass
class ToolMarkerDevOnly(ToolMarker):
"""Marker for development-only tools (only enabled in dev mode)."""
pass
class ToolMarkerMutating(ToolMarker):
"""Marker for tools that mutate state."""
pass