We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jimmyjoe009/openf1_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_server_debug.py•685 B
#!/usr/bin/env python3
"""Debug script to test server startup and tool registration"""
import asyncio
import json
from src.server import OpenF1MCPServer
async def main():
print("Creating server instance...")
server = OpenF1MCPServer()
print("\nChecking registered tools...")
tools = server.get_tools()
print(f"Number of tools registered: {len(tools)}")
if tools:
print("\nTools:")
for tool in tools:
print(f" - {tool.name}: {tool.description}")
print("\nServer is ready for MCP communication")
print("Tools should be discoverable by VS Code MCP client")
if __name__ == "__main__":
asyncio.run(main())