Goodday MCP Server

A Model Context Protocol (MCP) server for integrating with Goodday project management platform. This server provides tools for managing projects

Local serverstdioPython

What is the Goodday MCP MCP server?

Goodday MCP becomes available to MCP clients through the goodday mcp 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.

What Goodday MCP does

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.

Tools it exposes

Once connected, the assistant can call these 5 tools directly:

  • Features — The Features tool exposed by this server
  • Setup — 1. Copy openwebui/goodday_openwebui_complete_tool.py to your OpenWebUI tools directory 2. Configure the valves with your API credentials: - api_key: Your
  • Prerequisites — The Prerequisites tool exposed by this server
  • Configuration — 1. Set up environment variables: Create a .env file in your project root or export the variable: bash export GOODDAY_API_TOKEN=your_goodday_api_token_here
  • Testing — The Testing tool exposed by this server

Installing the goodday mcp mcp server

The server is distributed via PyPI as goodday-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: GOODDAY_API_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Python 3.10 or higher - UV package manager (recommended) or pip - Goodday API token

Where it fits

File and storage servers are what separate an assistant that talks about your documents from one that actually works with them. Goodday MCP sits in that group, and the shape of its toolset — Features, Setup, Prerequisites among others — tells you what it is really for. Worth comparing against the other file systems servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by cdmx1, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the goodday mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
FeaturesThe Features tool exposed by this server.
Setup1. Copy openwebui/goodday_openwebui_complete_tool.py to your OpenWebUI tools directory 2. Configure the valves with your API credentials: - api_key: Your Goodday API token - search_url: Your VectorDB search endpoint (opt
PrerequisitesThe Prerequisites tool exposed by this server.
Configuration1. **Set up environment variables**: Create a .env file in your project root or export the variable: bash export GOODDAY_API_TOKEN=your_goodday_api_token_here
TestingThe Testing tool exposed by this server.

How to install the Goodday MCP MCP server

{
     "mcpServers": {
       "goodday": {
         "command": "goodday-mcp",
         "env": {
           "GOODDAY_API_TOKEN": "your_goodday_api_token_here"
         }
       }
     }
   }

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.10 or higher - UV package manager (recommended) or pip - Goodday API token
VariableDescriptionRequired
GOODDAY_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Goodday MCP to Features.
  • Use Goodday MCP to Setup.
  • Use Goodday MCP to Prerequisites.

Frequently asked questions

It connects Goodday MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Features, Setup, Prerequisites, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Goodday MCP directly.