
Godspeed Task Management Connector
Manage your tasks efficiently with this connector. Create, update, and organize tasks seamlessly using the Godspeed Task Management API. Enhance your productivity by integrating task management directly into your applications.
Installation
Installing for Claude Desktop
Option 1: One-Command Installation
npx mcpbar@latest install AliNagy/godspeed-mcp -c claude
This command will automatically install and configure the Godspeed Task Management Connector MCP server for your selected client.
Option 2: Manual Configuration
Run the command below to open your configuration file:
npx mcpbar@latest edit -c claude
After opening your configuration file, copy and paste this configuration:
View JSON configuration
{
"mcpServers": {
"Godspeed Task Management Connector": {
"command": "npx",
"args": [
"-y",
"godspeed-mcp"
],
"env": {
"GODSPEED_TOKEN": "${input:godspeed_token}",
"YOUR_TOKEN": "${input:your_token}"
}
}
}
}
Godspeed MCP
A Model Context Protocol connector for the Godspeed Task Management API.
Installation
You can use this tool without installation via npx:
npx godspeed-mcp
Or install it globally:
npm install -g godspeed-mcp
Configuration
Authentication Token
The Godspeed API token can be provided in two ways:
- Environment variable:
GODSPEED_TOKEN
- Command line argument:
--token=YOUR_TOKEN
or-t YOUR_TOKEN
Empty List ID (Optional)
For creating new task lists, you can configure an empty list ID to use as a template:
- Environment variable:
GODSPEED_EMPTY_LIST_ID
- Command line argument:
--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.
Cursor MCP Configuration
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
}
}
}
}
Features
This MCP connector provides the following task management tools:
- List all tasks
- Get task details
- Create new tasks (single or bulk up to 60 tasks)
- Update existing tasks
- Delete tasks
- Complete/uncomplete tasks
- Get task lists
- Create new task lists (by duplicating a template)
- Duplicate existing lists
License
MIT
Stars
1Forks
1Last commit
8 days agoRepository age
1 monthLicense
MIT
Auto-fetched from GitHub .
MCP servers similar to Godspeed Task Management Connector:

Stars
Forks
Last commit

Stars
Forks
Last commit

Stars
Forks
Last commit