Harvest 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., "@Harvest MCP Serverlist my time entries for 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.
Harvest MCP Server
Time tracking using Claude.
The most complete Harvest integration for Claude. 54 tools covering all important endpoints of the Harvest API v2 — time entries, projects, tasks, clients, expenses, team assignments, and reports.
Built in TypeScript (not Python like most MCP servers for Harvest time tracking), bundled into a single file — no runtime dependencies to install.
Works with Claude Desktop Extension (one-click install, no config files), Claude Cowork Plugin (skills + slash commands), and Claude Code.
Related MCP server: Harvest MCP Server
For Users
Quick Install (Claude Desktop Extension) — recommended
Get your Harvest credentials — go to id.getharvest.com/developers, click "Create New Personal Access Token", and note your Access Token and Account ID
Download
harvest-mcp.mcpbfrom the latest releaseDouble-click the
.mcpbfile (or drag it into Claude Desktop settings)Enter your credentials when prompted — they're stored securely in your OS keychain
That's it. No terminal, no JSON files, no build steps. The extension installs the MCP server locally and handles everything — much simpler than servers that require manually editing JSON config files.
This is all you need to get started. The Cowork plugin below is optional but recommended.
Install (Claude Cowork Plugin) — optional
Get your Harvest credentials (same as above)
Download
harvest-plugin.zipfrom the latest releaseIn Claude Desktop, switch to the Cowork tab
Click Customize in the left sidebar
Click Browse plugins, then upload the
harvest-plugin.zipfileEnter your credentials when prompted
The plugin adds slash commands (/log-time, /timer, /weekly-report, /catchup, /unsubmitted) and skills for time management, project analysis, and context-aware Harvest conventions.
What You Can Do
Track Time — create, update, and delete time entries. Start and stop timers. Log hours manually or with start/end times.
Manage Projects — create projects, assign users, set budgets, configure billing. Full CRUD on projects, tasks, and clients.
Track Expenses — log expenses by category, manage expense categories with unit-based pricing (e.g. mileage).
Get Reports — time reports by client/project/task/team, expense reports, project budget reports, uninvoiced amounts.
Team Management — assign users to projects, manage roles and rates, view project assignments.
All 54 Tools
Area | Tools |
Time Entries |
|
Projects |
|
Tasks |
|
Clients |
|
Users |
|
Expenses |
|
Expense Categories |
|
Project User Assignments |
|
Time Reports |
|
Expense Reports |
|
Other Reports |
|
Guided Prompts
Prompt | What it does |
| Walks you through picking a project, task, hours, and notes |
| Summarizes the week's entries by project/client with gap detection |
| Quick start/stop/status for running timers |
Getting Your Harvest API Credentials
Sign in with your Harvest account
Click "Create New Personal Access Token"
Give it a name (e.g. "Claude")
Copy the Token and note your Account ID (shown on the same page)
For Developers
Prerequisites
Node.js 18+
Setup
git clone https://github.com/mikkokam/harvest-cowork-mcp.git
cd harvest-cowork-mcp
pnpm installBuild
pnpm build # Compile TypeScript + bundle with esbuild
pnpm validate # Validate the .mcpb manifest
pnpm pack:mcpb # Build + package as .mcpb extensionRun Locally (for development)
export HARVEST_ACCESS_TOKEN="your-token"
export HARVEST_ACCOUNT_ID="your-account-id"
node packages/mcp-server/dist/index.mjsOr add to Claude Desktop / Claude Code config manually:
{
"mcpServers": {
"harvest": {
"command": "node",
"args": ["/absolute/path/to/harvest-cowork-mcp/packages/mcp-server/dist/index.mjs"],
"env": {
"HARVEST_ACCESS_TOKEN": "your-token",
"HARVEST_ACCOUNT_ID": "your-account-id"
}
}
}
}Project Structure
harvest-cowork-mcp/
├── packages/
│ ├── mcp-server/
│ │ ├── src/
│ │ │ ├── index.ts # Server entry point
│ │ │ ├── harvest-client.ts # Harvest API v2 HTTP client
│ │ │ ├── types.ts # TypeScript types for all API entities
│ │ │ ├── tools/
│ │ │ │ ├── time-entries.ts # 7 tools
│ │ │ │ ├── projects.ts # 6 tools
│ │ │ │ ├── tasks.ts # 5 tools
│ │ │ │ ├── clients.ts # 5 tools
│ │ │ │ ├── users.ts # 5 tools
│ │ │ │ ├── expenses.ts # 5 tools
│ │ │ │ ├── expense-categories.ts # 5 tools
│ │ │ │ ├── project-user-assignments.ts # 6 tools
│ │ │ │ └── reports.ts # 10 tools
│ │ │ └── prompts/
│ │ │ ├── log-time.ts
│ │ │ ├── weekly-summary.ts
│ │ │ └── timer.ts
│ │ ├── manifest.json # .mcpb extension manifest
│ │ ├── package.json
│ │ └── tsconfig.json
│ └── plugin/ # Claude Cowork plugin (skills + commands)
├── package.json # Workspace root
├── pnpm-workspace.yaml
└── .gitignoreAdding New Endpoints
The pattern is consistent across all tools:
Add types in
types.ts(entity interface, create/update params, list params)Add client methods in
harvest-client.tsCreate tool file in
tools/withregisterXTools()functionRegister in
index.tsUpdate manifest in
manifest.json(tool name + description)Build with
pnpm build
Tech Stack
MCP TypeScript SDK ^1.27
Zod for tool input schema validation
esbuild for single-file bundling
@anthropic-ai/mcpb for Desktop Extension packaging
STDIO transport — runs as a subprocess of Claude
Harvest API Reference
Built on Harvest API v2. Covers:
How This Was Built
This entire MCP server — 54 tools, types, client, manifest, packaging — was built in a single session using Claude Cowork with the Claude Code VS Code Extension. Claude read the Harvest API docs, wrote all the code, validated the manifest, built the .mcpb, and pushed to GitHub. No config files were edited by hand.
License
MIT
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
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/mikkokam/harvest-cowork-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server