We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dennismartis/mcp-todo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env python
import asyncio
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("minimal-server")
@mcp.tool()
def hello_world() -> str:
"""A simple hello world tool"""
return "Hello, world from minimal MCP server!"
if __name__ == "__main__":
print("Starting MCP server...")
mcp.run()