Productive.io MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Productive.io MCP ServerList my tasks due this week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Productive.io MCP Server
An MCP (Model Context Protocol) server for Productive.io that enables AI assistants like Claude to interact with your Productive.io workspace — managing projects, tasks, time entries, budgets, and more.
Supports two transport modes:
stdio (default) — Claude launches it as a local subprocess
HTTP (with
--httpflag) — runs as an Express web server for remote/team use
Prerequisites
Node.js 18+
A Productive.io account with API access
API Token — generate one in Productive.io under Settings → API integrations
Organization ID — found in your Productive.io account settings
Related MCP server: TrackingTime MCP Server
Installation
git clone <your-repo-url> productive-mcp-server
cd productive-mcp-server
npm install
cp .env.example .env
# Edit .env with your credentials
npm run buildConfiguration
Variable | Required | Description |
| Yes | Your Productive.io API token |
| Yes | Your Productive.io organization ID |
| No | HTTP server port (default: 3000) |
Running
stdio mode (default — for local use)
# Development
npm run dev
# Production (after build)
npm startHTTP mode (for remote/team use)
# Development
npm run dev:http
# Production (after build)
npm run start:httpThe HTTP server exposes:
POST /mcp— MCP protocol endpointGET /health— health check
Connecting to Claude Desktop
Add this to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"productive": {
"command": "node",
"args": ["/absolute/path/to/productive-mcp-server/dist/index.js"],
"env": {
"PRODUCTIVE_API_TOKEN": "your_api_token_here",
"PRODUCTIVE_ORG_ID": "your_org_id_here"
}
}
}
}Connecting to Claude Code
stdio mode
claude mcp add productive -- node /absolute/path/to/productive-mcp-server/dist/index.jsSet the environment variables before running Claude Code, or add them to your shell profile:
export PRODUCTIVE_API_TOKEN=your_api_token_here
export PRODUCTIVE_ORG_ID=your_org_id_hereHTTP mode
Start the server first:
cd /path/to/productive-mcp-server
PRODUCTIVE_API_TOKEN=your_token PRODUCTIVE_ORG_ID=your_org npm run start:httpThen connect Claude Code:
claude mcp add productive --transport http http://localhost:3000/mcpConnecting to VS Code
Add to your VS Code user settings JSON (.vscode/settings.json or user settings):
stdio mode
{
"mcp": {
"servers": {
"productive": {
"command": "node",
"args": ["/absolute/path/to/productive-mcp-server/dist/index.js"],
"env": {
"PRODUCTIVE_API_TOKEN": "your_api_token_here",
"PRODUCTIVE_ORG_ID": "your_org_id_here"
}
}
}
}
}HTTP mode
{
"mcp": {
"servers": {
"productive": {
"type": "http",
"url": "http://localhost:3000/mcp"
}
}
}
}Available Tools
Tool | Description | Key Parameters |
| List/search projects |
|
| Get project by ID |
|
| Create a project |
|
| Update a project |
|
| List/filter tasks |
|
| Get task by ID |
|
| Create a task |
|
| Update a task |
|
| List time entries |
|
| Log a time entry |
|
| List team members |
|
| Get person by ID |
|
| List budgets/deals |
|
| Get deal by ID |
|
| List companies |
|
| Get company by ID |
|
| List bookings |
|
| List services |
|
Invoicing Tools (Draft Only)
All invoice tools create and manage draft invoices only. Finalization (assigning an invoice number) must always be done manually in the Productive.io UI.
Tool | Description | Key Parameters |
| List/filter invoices |
|
| Get full invoice details with line items |
|
| Create a new empty draft invoice |
|
| Update a draft invoice |
|
| Clone an invoice (line items + budget links) |
|
| Clone a client's most recent invoice |
|
| List line items for an invoice |
|
| Add a line item to a draft invoice |
|
| Update an existing line item |
|
| Delete a line item |
|
| List budget links for an invoice |
|
| Link a draft invoice to a budget |
|
| List available document types |
|
| List your company subsidiaries |
|
| List available tax rates |
|
All list tools support page, page_size, and sort parameters.
Testing with MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.jsThis opens an interactive UI to test each tool.
Rate Limits
Productive.io enforces:
100 requests per 10 seconds
4,000 requests per 30 minutes
The server implements automatic retry with exponential backoff for 429 responses (up to 3 retries).
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KaterinaProtivenskiy/productive-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server