We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mit2u/CallHub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•449 B
"""
MCP tools package for CallHub API integration.
This package contains tools for use with the Claude MCP adapter.
"""
from .batch_activation_tools import (
process_uploaded_activation_csv,
activate_agents_with_batch_password,
get_activation_status,
reset_activation_state
)
__all__ = [
'process_uploaded_activation_csv',
'activate_agents_with_batch_password',
'get_activation_status',
'reset_activation_state'
]