Supports loading environment variables from a .env file for configuring the API token needed to authenticate with Goodday.
Provides a workflow for extracting Goodday task data, creating embeddings using Ollama, and storing them in a Qdrant vector database for semantic search functionality.
Used within the n8n workflow to create embeddings for Goodday tasks, enabling semantic search capabilities for the MCP server.
Provides the runtime environment for the MCP server, requiring Python 3.10 or higher for operation.
Goodday MCP Server
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.
Features
Project Management
- get_projects: Retrieve list of projects (with options for archived and root-only filtering)
- get_project: Get detailed information about a specific project
- create_project: Create new projects with customizable templates and settings
- get_project_users: Get users associated with a specific project
Task Management
- get_project_tasks: Retrieve tasks from specific projects (with options for closed tasks and subfolders)
- get_user_assigned_tasks: Get tasks assigned to a specific user
- get_user_action_required_tasks: Get action-required tasks for a user
- get_task: Get detailed information about a specific task
- create_task: Create new tasks with full customization (subtasks, assignments, dates, priorities)
- update_task_status: Update task status with optional comments
- add_task_comment: Add comments to tasks
User Management
- get_users: Retrieve list of organization users
- get_user: Get detailed information about a specific user
OpenWebUI Integration
This package also includes an OpenWebUI tool that provides a complete interface for Goodday project management directly in chat interfaces. The OpenWebUI tool includes:
Features
- Project Management: Get projects and project tasks
- Sprint Management: Get tasks from specific sprints by name/number
- User Management: Get tasks assigned to specific users
- Smart Query: Natural language interface for common requests
- Search: Semantic search across tasks using VectorDB backend
- Task Details: Get detailed task information and messages
Setup
- Copy
openwebui/goodday_openwebui_complete_tool.py
to your OpenWebUI tools directory - Configure the valves with your API credentials:
api_key
: Your Goodday API tokensearch_url
: Your VectorDB search endpoint (optional)bearer_token
: Bearer token for search API (optional)
Vector Database Setup (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:
- Fetches all Goodday projects and tasks
- Extracts task messages and content
- Creates embeddings using Ollama
- Stores in Qdrant vector database
- Provides search API endpoint
See openwebui/OPENWEBUI_TOOL_README.md
for detailed usage instructions.
Installation
From PyPI (Recommended)
From Source
Prerequisites
- Python 3.10 or higher
- UV package manager (recommended) or pip
- Goodday API token
Setup with UV
- Install UV (if not already installed):
- Clone and set up the project:
Setup with pip
Configuration
- Set up environment variables:
Create a
.env
file in your project root or export the variable:To get your Goodday API token:- Go to your Goodday organization
- Navigate to Settings → API
- Click the generate button to create a new token
Usage
Running the Server Standalone
If installed from PyPI:
If running from source with UV:
Using with Claude Desktop
- Configure Claude Desktop by editing your configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Add the server configuration:Option A: If installed from PyPI:Option B: If running from source:
- Restart Claude Desktop to load the new server.
Using with Other MCP Clients
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.
API Reference
Environment Variables
Variable | Description | Required |
---|---|---|
GOODDAY_API_TOKEN | Your Goodday API token | Yes |
Tool Examples
Get Projects
Create a Task
Update Task Status
Data Formats
Date Format
All dates should be provided in YYYY-MM-DD
format (e.g., 2025-06-16
).
Priority Levels
- 1-10: Normal priority levels
- 50: Blocker
- 100: Emergency
Project Colors
Project colors are specified as integers from 1-24, corresponding to Goodday's color palette.
Error Handling
The server includes comprehensive error handling:
- Authentication errors: When API token is missing or invalid
- Network errors: When Goodday API is unreachable
- Validation errors: When required parameters are missing
- Permission errors: When user lacks permissions for requested operations
All errors are returned as descriptive strings to help with troubleshooting.
Development
Project Structure
Adding New Tools
To add new tools to the server:
- Add the tool function in
goodday_mcp/main.py
using the@mcp.tool()
decorator: - Test the tool by running the server and testing with an MCP client.
Testing
Test the server by running it directly:
The server will start and wait for MCP protocol messages via stdin/stdout.
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
For issues related to:
- MCP Server: Create an issue in this repository
- Goodday API: Refer to Goodday API documentation
- MCP Protocol: Refer to MCP documentation
Changelog
v1.0.0
- Initial release
- Full project management capabilities
- Task management with comments and status updates
- User management
- Comprehensive error handling
- UV support with modern Python packaging
This server cannot be installed
Goodday‑MCP is a lightweight Model Context Protocol (MCP) server designed to seamlessly integrate with the Goodday project management platform via its API v2. It enables querying of projects, tasks, and users—without altering any data—making it ideal for secure context-aware applications
Related MCP Servers
- -securityFlicense-qualityA specialized Model Context Protocol (MCP) server that integrates Google services (Gmail, Calendar, etc.) into your AI workflows. This server enables seamless access to Google services through MCP, allowing AI agents to interact with Gmail, Google Calendar, and other Google services.Last updated -103TypeScript
Upstash MCP Serverofficial
AsecurityAlicenseAqualityModel Context Protocol (MCP) is a new, standardized protocol for managing context between large language models (LLMs) and external systems. In this repository, we provide an installer as well as an MCP Server for Upstash Developer API's.Last updated -165827TypeScriptMIT License- AsecurityFlicenseAqualityA Model Context Protocol (MCP) server that interacts with system APIs, allowing users to check connections, search employees, register breakfast, and update chemical information by shifts.Last updated -2176JavaScript
- -securityAlicense-qualityA Model Context Protocol (MCP) server designed to easily dump your codebase context into Large Language Models (LLMs).Last updated -21JavaScriptApache 2.0