mcp-server-harvest-time-tracking
A Model Context Protocol (MCP) server implementation for Harvest, enabling seamless integration with MCP clients. This project provides a standardized way to interact with Harvest through the Model Context Protocol. This is essentially a wrapper for the Harvest API in MCP format.
Overview
This project is a Model Context Protocol (MCP) server implementation for Harvest, designed to enable seamless integration with MCP clients. It acts as a wrapper for the Harvest API in MCP format, providing a standardized way to interact with Harvest.
To use this project, set up the MCP server and configure it to connect with your Harvest account. Follow the documentation on GitHub for detailed setup instructions.
- Seamless integration with Harvest through the Model Context Protocol. - Standardized interaction with the Harvest API. - Easy setup and configuration for developers.
- Integrating Harvest time tracking with custom applications.
- Automating time entry and reporting processes.
- Enhancing project management tools with Harvest data.
Add to your AI client
Use these steps to connect mcp-server-harvest-time-tracking in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-harvest-time-tracking-codifyag": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-harvest-time-tracking-codifyag"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-harvest-time-tracking-codifyag": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-harvest-time-tracking-codifyag"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-harvest-time-tracking-codifyag": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-harvest-time-tracking-codifyag"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-harvest-time-tracking-codifyag": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-harvest-time-tracking-codifyag"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-harvest-time-tracking-codifyag": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-harvest-time-tracking-codifyag"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-harvest-time-tracking-codifyag": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-harvest-time-tracking-codifyag"
]
}
}
}FAQ
What is the Model Context Protocol?
The Model Context Protocol is a standardized way to interact with various APIs, allowing for easier integration and communication between different systems.
Is this project open source?
Yes! The mcp-server-harvest-time-tracking project is open source and available on GitHub.
What programming language is used?
The project is implemented in a language compatible with the Harvest API, typically JavaScript or Python.