Early MCP
Integrates with the EARLY (Timeular v4) API to manage activities, track time, and generate analytics like efficiency and billing reports. It enables AI assistants to perform comprehensive time tracking tasks, including starting/stopping timers and querying manual time entries.
README
EARLY MCP Server
An MCP (Model Context Protocol) server that integrates with the EARLY (Timeular v4) time tracking API. Gives AI assistants like Claude full access to time tracking, activity management, and analytics.
Features
- Activity Management - Create, update, list, and delete activities
- Time Tracking - Start/stop timers, view current tracking status
- Time Entries - Query, create, and delete manual time entries
- Analytics - Time summaries, efficiency reports with gap detection, and billing reports
- API Explorer - Raw authenticated access to any EARLY API endpoint
Tools
| Tool | Description |
|---|---|
list_activities |
List all activities with IDs, names, and colors |
create_activity |
Create a new activity |
update_activity |
Update an existing activity's name or color |
delete_activity |
Archive/delete an activity |
current_tracking |
Get the currently running timer |
start_tracking |
Start tracking time for an activity |
stop_tracking |
Stop the current tracker |
list_time_entries |
Query time entries within a date range |
create_time_entry |
Create a manual time entry |
delete_time_entry |
Delete a time entry |
time_summary |
Aggregate hours by activity for a period |
efficiency_report |
Analyze time distribution and detect untracked gaps |
billing_report |
Calculate billable hours and cost by activity |
explore_api |
Make raw authenticated requests to any EARLY API endpoint |
Setup
Prerequisites
- Python 3.12+
- uv package manager
- An EARLY developer API key and secret
Install
git clone git@github.com:sakebomb/early_mcp.git
cd early_mcp
uv sync
Configuration
Create a .env file with your EARLY API credentials:
EARLY_API_KEY=your_api_key
EARLY_API_SECRET=your_api_secret
Claude Code
Add this to your Claude Code MCP settings (~/.claude/settings.json):
{
"mcpServers": {
"early": {
"command": "uv",
"args": ["run", "--directory", "/path/to/early_mcp", "python", "early.py"],
"env": {
"EARLY_API_KEY": "your_api_key",
"EARLY_API_SECRET": "your_api_secret"
}
}
}
}
Project Structure
early.py # MCP server with tool definitions
early_client.py # API client, auth, and utility functions
pyproject.toml # Project config and dependencies
Authentication
The server uses EARLY's developer sign-in flow. It exchanges your API key/secret for a bearer token, caches it in memory, and automatically refreshes on expiry.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.