We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sujjadshaik/fastmcp-starter-kit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•343 B
from typing import Any
import httpx
from mcp.server.fastmcp import FastMCP
# Initialize FastMCP server
mcp = FastMCP("fastmcp-starter-kit", port=8000)
@mcp.tool()
async def get_author_name() -> str:
"""Get the name of the author of this MCP server."""
return "Sujjad Shaik"
if __name__ == "__main__":
mcp.run(transport="sse")