We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/llanterme/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•276 B
from mcp.server.fastmcp import FastMCP
from country_server_mcp.tools import countries, states
mcp = FastMCP("Country & States Server")
# Register tools from modules
countries.register(mcp)
states.register(mcp)
def cli():
mcp.run()
if __name__ == "__main__":
cli()