We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rdwj/mcp-test-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•412 B
"""MCP tools for testing target MCP servers.
This package contains all the tools exposed by the mcp-test-mcp server
for connecting to and testing target MCP servers.
"""
from .connection import connect_to_server, disconnect, get_connection_status
from .tools import call_tool, list_tools
__all__ = [
"connect_to_server",
"disconnect",
"get_connection_status",
"list_tools",
"call_tool",
]