We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcuellar/tuneit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mcp_client.py•400 B
import asyncio
from fastmcp import Client
client = Client("http://localhost:8000/mcp")
async def call_tool():
async with client:
job_description = "Software engineer position at Boston Dynamics requiring experience in Python and FastAPI."
result = await client.call_tool("format_to_markdown", {"job_description": job_description})
print(result)
asyncio.run(call_tool())