by cdmx-in
Integrate Goodday with top project management software for seamless task, sprint, and user tracking, with analytics and
Connects to Goodday project management platform to manage projects, tasks, sprints, and users. Includes semantic search capabilities for finding tasks and documents using natural language queries.
Goodday is a community-built MCP server published by cdmx-in that provides AI assistants with tools and capabilities via the Model Context Protocol. Integrate Goodday with top project management software for seamless task, sprint, and user tracking, with analytics and It is categorized under productivity.
You can install Goodday in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Goodday is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
According to our notes, Goodday benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Strong directory entry: Goodday surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Goodday is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: Goodday surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: Goodday is the kind of server we cite when onboarding engineers to host + tool permissions.
Goodday reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Goodday for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Goodday has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Goodday is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Goodday has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 51
A Model Context Protocol (MCP) server for integrating with Goodday project management platform. This server provides tools for managing projects, tasks, and users through the Goodday API v2.
This package also includes an OpenWebUI tool that provides a complete interface for Goodday project management directly in chat interfaces. The OpenWebUI tool includes:
openwebui/goodday_openwebui_complete_tool.py to your OpenWebUI tools directoryapi_key: Your Goodday API tokensearch_url: Your VectorDB search endpoint (optional)bearer_token: Bearer token for search API (optional)For semantic search functionality, you can set up a vector database using the provided n8n workflow (openwebui/n8n-workflow-goodday-vectordb.json). This workflow:
See openwebui/OPENWEBUI_TOOL_README.md for detailed usage instructions.
pip install goodday-mcp
Install UV (if not already installed):
curl -LsSf https://astral.sh/uv/install.sh | sh
Clone and set up the project:
git clone https://github.com/cdmx1/goodday-mcp.git
cd goodday-mcp
# Create virtual environment and install dependencies
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv sync
git clone https://github.com/cdmx1/goodday-mcp.git
cd goodday-mcp
pip install -e .
Set up environment variables:
Create a .env file in your project root or export the variable:
export GOODDAY_API_TOKEN=your_goodday_api_token_here
To get your Goodday API token:
If installed from PyPI:
goodday-mcp
If running from source with UV:
uv run goodday-mcp
Configure Claude Desktop by editing your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the server configuration:
Option A: If installed from PyPI:
{
"mcpServers": {
"goodday": {
"command": "goodday-mcp",
"env": {
"GOODDAY_API_TOKEN": "your_goodday_api_token_here"
}
}
}
}
Option B: If running from source:
{
"mcpServers": {
"goodday": {
"command": "uv",
"args": ["run", "goodday-mcp"],
"env": {
"GOODDAY_API_TOKEN": "your_goodday_api_token_here"
}
}
}
}
Restart Claude Desktop to load the new server.
The server communicates via stdio transport and can be integrated with any MCP-compatible client. Refer to the MCP documentation for client-specific integration instructions.
| Variable | Description | Required |
|---|---|---|
GOODDAY_API_TOKEN | Your Goodday API token | Yes |
# Get all active projects
get_projects()
# Get archived projects
get_projects(archived=True)
# Get only root-level projects
get_projects(root_only=True)
create_task(
project_id="project_123",
title="Implement new feature",
from_user_id="user_456",
message="Detailed description of the task",
to_user_id="user_789",
deadline="2025-06-30",
priority=5
)
update_task_status(
task_id="task_123",
user_id="user_456",
status_id="status_completed",
message="Task completed successfully"
)
All dates should be provided in YYYY-MM-DD format (e.g., 2025-06-16).
Project colors are specified as integers from 1-24, corresponding to Goodday's color palette.
The server includes comprehensive error handling:
All errors are returned as descriptive strings to help with troubleshooting.
goodday-mcp/
├── goodday_mcp/ # Main package directory
│ ├── __init__.py # Package initialization
│ └── main.py # Main MCP server implementation
├── pyproject.toml # Project configuration and dependencies
├── README.md # This file
├── LICENSE # MIT license
├── uv.lock # Dependency lock file
└── .env # Environment variables (create this)
To add new tools to the server:
Add the tool function in goodday_mcp/main.py using the @mcp.tool() decorator:
@mcp.tool()
async def your_new_tool(param1: str, param2: Optional[int] = None) -> str:
"""Description of what the tool does.
Args:
param1: Description of parameter 1
param2: Description of optional parameter 2
"""
# Implementation here
return "Result"
Test the tool by running the server and testing with an MCP client.
Test the server by running it directly:
# If installed from PyPI
goodday-mcp
# If running from source
uv run goodday-mcp
The server will start and wait for MCP protocol messages via stdin/stdout.
This project is licensed under the MIT License - see the LICENSE file for details.
For issues related to:
get_task_details and get_task_messages for comprehensive task informationget_goodday_sprint_tasks and get_goodday_sprint_summary for sprint trackingget_goodday_smart_query for natural language project queriessearch_goodday_tasks with VectorDB integration for intelligent task searchsearch_project_documents aPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.