We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mehrshadshams/CopilotMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from fastmcp import FastMCP
mcp = FastMCP("CustomerMCP")
@mcp.tool()
async def start_interview() -> dict:
"""Trigger the start of the customer interview process."""
return {"message": "Interview started. Redirecting to Customer Interview MCP."}
if __name__ == "__main__":
mcp.run()