personal-timesheet-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., "@personal-timesheet-mcplog 5 hours for project ABC today"
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.
Timesheet MCP Server
A Model Context Protocol (MCP) server that provides CRUD operations for timesheet management via REST API endpoints.
👤 For End Users: See README-USER.md for simple installation instructions
👨💻 For Developers: Continue reading below
📦 Publishing: See Publishing Guide to distribute your connector
Features
Create timesheet entries
Read timesheet entries (list and get single)
Update existing entries
Delete timesheet entries
List Projects for reference
Configurable API base URL
Support for both Go and Node.js backend APIs
Related MCP server: TimePRO MCP Server
Prerequisites
Node.js 18 or higher
A running instance of the Timesheet Logger backend API
Claude Desktop (for integration)
Installation
Navigate to the mcp directory:
cd mcpInstall dependencies:
npm installConfigure environment variables:
cp .env.example .env
# Edit .env and set TIMESHEET_API_BASE_URLBuild the project:
npm run buildConfiguration
Environment Variables
Create a .env file or set environment variables:
TIMESHEET_API_BASE_URL=http://localhost:3000/apiClaude Desktop Integration
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
For end users (after publishing to npm):
{
"mcpServers": {
"timesheet": {
"command": "timesheet-mcp",
"env": {
"TIMESHEET_API_BASE_URL": "http://localhost:3000/api"
}
}
}
}For local development:
{
"mcpServers": {
"timesheet": {
"command": "node",
"args": ["/absolute/path/to/timesheet_logger/mcp/build/index.js"],
"env": {
"TIMESHEET_API_BASE_URL": "http://localhost:3000/api"
}
}
}
}Usage
Development Mode
Run in development mode with auto-reload:
npm run devProduction Mode
Build and run:
npm run build
npm startAvailable Tools
1. create_timesheet_entry
Create a new timesheet entry.
Parameters:
project_id(string, required): Project IDdate(string, required): Entry date (YYYY-MM-DD)hours(number, required): Hours workeddescription(string, optional): Entry descriptionbillable(boolean, optional): Whether entry is billable (default: true)
2. list_timesheet_entries
List timesheet entries with optional filters.
Parameters:
start_date(string, optional): Filter by start date (YYYY-MM-DD)end_date(string, optional): Filter by end date (YYYY-MM-DD)project_id(string, optional): Filter by project IDlimit(number, optional): Maximum results (default: 50)offset(number, optional): Offset for pagination (default: 0)
3. get_timesheet_entry
Get a single timesheet entry by ID.
Parameters:
entry_id(string, required): Entry ID
4. update_timesheet_entry
Update an existing timesheet entry.
Parameters:
entry_id(string, required): Entry IDproject_id(string, optional): New project IDdate(string, optional): New date (YYYY-MM-DD)hours(number, optional): New hoursdescription(string, optional): New descriptionbillable(boolean, optional): New billable status
5. delete_timesheet_entry
Delete a timesheet entry.
Parameters:
entry_id(string, required): Entry ID
6. list_projects
List available projects.
Parameters: None
7. create_project
Create a new project. Requires admin or manager role.
Parameters:
name(string, required): Project namedescription(string, optional): Project descriptionis_active(boolean, optional): Whether project is active (default: true)
8. login
Manually trigger browser-based login. Opens a browser window for authentication.
Parameters: None
Note: Useful after logout or for manual authentication. If already logged in, will show current user.
9. logout
Logout from the current session and clear stored authentication tokens.
Parameters: None
Note: After logout, you will need to re-authenticate (via browser login) on the next request.
Testing
Test with Local Backend
Start your backend API:
# From backend/api-nodejs or backend/api-go
docker-compose upRun the MCP server:
npm run devTest through Claude Desktop or use the MCP Inspector
Troubleshooting
Connection Refused
Ensure the backend API is running
Verify the
TIMESHEET_API_BASE_URLis correctCheck that the port matches your backend configuration
Authentication Errors
Verify API key if required by your backend
Check that the API endpoint supports the operations
Tool Not Found
Rebuild the project:
npm run buildRestart Claude Desktop
Verify the path in Claude Desktop config is absolute
Development
Project Structure
mcp/
├── src/
│ ├── index.ts # Main MCP server entry point
│ ├── config.ts # Configuration management
│ ├── types.ts # TypeScript types
│ ├── api/
│ │ ├── client.ts # HTTP client wrapper
│ │ └── timesheet.ts # Timesheet API operations
│ └── tools/
│ ├── create-entry.ts # Create tool
│ ├── list-entries.ts # List tool
│ ├── get-entry.ts # Get tool
│ ├── update-entry.ts # Update tool
│ └── delete-entry.ts # Delete tool
├── build/ # Compiled output
├── package.json
├── tsconfig.json
└── README.mdAdding New Tools
Create a new file in
src/tools/Define the tool schema using Zod
Implement the handler function
Register the tool in
src/index.ts
License
MIT
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/cruzleedan/personal-timesheet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server