Godspeed Task Management
STDIOModel Context Protocol connector for Godspeed Task Management API.
Model Context Protocol connector for Godspeed Task Management API.
A Model Context Protocol connector for the Godspeed Task Management API.
You can use this tool without installation via npx:
npx godspeed-mcp
Or install it globally:
npm install -g godspeed-mcp
The Godspeed API token can be provided in two ways:
GODSPEED_TOKEN
--token=YOUR_TOKEN
or -t YOUR_TOKEN
For creating new task lists, you can configure an empty list ID to use as a template:
GODSPEED_EMPTY_LIST_ID
--empty-list-id=YOUR_LIST_ID
or -e YOUR_LIST_ID
If not provided, you'll need to specify the empty list ID when creating new lists.
For Windows, create a file at %USERPROFILE%\.cursor\mcp.json
with the following structure:
{ "mcpServers": { "godspeed-mcp": { "command": "cmd /c", "args": [ "godspeed-mcp", "--token=your-godspeed-api-token", "--empty-list-id=your-empty-list-id" // Optional ] } } }
For Mac/Linux, create a file at ~/.cursor/mcp.json
with this structure:
{ "mcpServers": { "godspeed-mcp": { "command": "npx", "args": ["godspeed-mcp"], "env": { "GODSPEED_TOKEN": "your-godspeed-api-token", "GODSPEED_EMPTY_LIST_ID": "your-empty-list-id" // Optional } } } }
This MCP connector provides the following task management tools:
MIT