We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BeehiveInnovations/pal-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•492 B
"""
Simple tools for PAL MCP.
Simple tools follow a basic request → AI model → response pattern.
They inherit from SimpleTool which provides streamlined functionality
for tools that don't need multi-step workflows.
Available simple tools:
- chat: General chat and collaborative thinking
- consensus: Multi-perspective analysis
- listmodels: Model listing and information
- testgen: Test generation
- tracer: Execution tracing
"""
from .base import SimpleTool
__all__ = ["SimpleTool"]