We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bigbugAi/bigbugai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
list_tools.py•309 B
from __future__ import annotations
import asyncio
from bigbugai_mcp.server_stdio import mcp
def main() -> None:
tools = asyncio.run(mcp.list_tools())
names = [t.name for t in tools]
print("Registered tools:")
for n in names:
print(f"- {n}")
if __name__ == "__main__":
main()