harvest-forecast-mcp
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., "@harvest-forecast-mcplist my recent time entries"
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.
harvest-forecast-mcp
An MCP server for the Harvest and Forecast APIs — let AI agents like Claude track time, list projects, and manage assignments and scheduling.
What it does
harvest-forecast-mcp exposes Harvest (time tracking) and Forecast (resource scheduling) operations as Model Context Protocol tools. Once configured, an AI agent can:
Track time — list, create, and delete time entries in Harvest
Browse projects — list projects, clients, tasks, and users
Manage scheduling — list and create Forecast assignments, milestones, and holidays
The server speaks stdio MCP, so it drops cleanly into Claude Desktop, Claude Code, or any MCP-compatible client.
Related MCP server: Calq MCP
Installation
# Run instantly without installing (recommended)
uvx harvest-forecast-mcp
# Or install with pip
pip install harvest-forecast-mcpConfiguration
The server reads credentials from environment variables. Harvest and Forecast use separate access tokens and account IDs, so you can configure one or both depending on which tools you need.
Variable | Required | Description |
| Harvest tools | Personal access token for the Harvest API |
| Harvest tools | Harvest account ID (numeric) |
| Forecast tools | Personal access token for the Forecast API |
| Forecast tools | Forecast account ID (numeric) |
| Yes | Identifying string for API requests (e.g. |
Tip: Harvest requires a descriptive
User-Agentheader. SetHARVEST_USER_AGENTto your app name and contact email.
Claude Desktop configuration
Add the server to your claude_desktop_config.json:
{
"mcpServers": {
"harvest-forecast": {
"command": "uvx",
"args": ["harvest-forecast-mcp"],
"env": {
"HARVEST_ACCESS_TOKEN": "your-harvest-token",
"HARVEST_ACCOUNT_ID": "123456",
"FORECAST_ACCESS_TOKEN": "your-forecast-token",
"FORECAST_ACCOUNT_ID": "123456",
"HARVEST_USER_AGENT": "my-claude-agent (you@example.com)"
}
}
}
}Tools
The server exposes 28 tools across the Harvest and Forecast APIs, including cross-API combinations:
Harvest — time tracking & project management
Tool | Description |
| List all projects with client info, optionally filtered by active status |
| List all users, optionally filtered by active status |
| List all clients, optionally filtered by active status |
| List all tasks available for time tracking |
| List time entries filtered by user, project, and date range (defaults to last 30 days) |
| Log hours against a project + task with optional notes |
| List users assigned to a Harvest project with rates and budgets |
| Get the current authenticated Harvest user's identity and permissions |
Forecast — scheduling & staffing
Tool | Description |
| List all Forecast projects (for scheduling) |
| List all schedulable people with roles and teams |
| List all placeholders (role-based slots) |
| List all roles with their assigned people and placeholders |
| List all milestones across all projects |
| Get details for a single Forecast project by ID |
| Get details for a single Forecast person by ID |
| List scheduled assignments filtered by date range, project, or person |
| Schedule a person on a project with allocation and dates |
| Update an existing assignment |
| Delete an assignment |
| Get remaining budgeted hours for all projects |
| Get future scheduled hours from a date |
| Same, filtered to a single project |
| Get a mapping of project IDs to assigned person IDs |
| Scheduling load heatmap for a project |
| Scheduling load heatmap for a person |
| Scheduling load heatmap for a placeholder |
| Get current Forecast user identity and account IDs |
Cross-API — manager insights
Tool | Description |
| A person's complete schedule: Forecast assignments + Harvest time entries for the period |
| Comprehensive project view: Harvest details + Forecast project + budget + recent time entries |
| Scheduled hours (Forecast) vs logged hours (Harvest) per person, with utilization % |
| Find people with capacity (not fully scheduled) in a date range |
| Summarize time entries grouped by project, user, or client |
| Budget burn-down: remaining budgeted hours vs logged hours last 30 days per project |
| Per-project scheduling overview: people, assignments, milestones for a date range |
Development
# Install dependencies
uv sync --group dev
# Run tests
uv run pytest
# Type check
uv run pyright src/harvest_forecast_mcp
# Lint
uv run ruff check .
# Format
uv run ruff format .See CONTRIBUTING.md for full development guidelines.
License
MIT
Disclaimer
This project is unofficial and not affiliated with, endorsed by, or sponsored by Harvest Inc. or its subsidiaries. "Harvest" and "Forecast" are trademarks of their respective owners. This software is provided "as-is", without any warranty express or implied.
MIT — Copyright (c) 2025 AZX, PBC.
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/AZX-PBC-OSS/harvest-forecast-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server