We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tylyan/taskwarrior-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•263 B
"""FastMCP server initialization for Taskwarrior MCP."""
from mcp.server.fastmcp import FastMCP
# Initialize the MCP server
mcp = FastMCP("taskwarrior_mcp")
def run() -> None:
"""Run the MCP server."""
mcp.run()
if __name__ == "__main__":
run()