Chronova MCP Server
The Chronova MCP server provides developer productivity and AI-assisted coding analytics to AI agents (like Claude Desktop, Cursor, and OpenCode).
Get Developer Context (
get_developer_context): Retrieve your authenticated user profile, including coding statistics, subscription status, GitHub integration status, and organization memberships — no parameters needed.Get Productivity Summary (
get_productivity_summary): Fetch aggregated coding statistics for a given time range (e.g., today, last 7 days, last year, or a custom date range), with breakdowns by language, editor, and project. Optionally filter by a specific project.Get AI Insights (
get_ai_insights): Analyze AI-assisted vs. manual coding activity over a time range, including adoption timelines, contribution share percentages, language-level human vs. AI comparisons, project-level AI dependency, and efficiency trends.Get Recent Activity (
get_recent_activity): Browse paginated coding heartbeat/activity events with optional filters for date, date range, project, programming language, and editor/IDE.
Retrieves developer context including GitHub status and organization memberships via Chronova.
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., "@Chronova MCP Serverget my productivity summary for last 7 days"
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.
MCP server that exposes Chronova developer productivity data to AI agents. Built on the Model Context Protocol, it lets tools like Claude Desktop, Cursor, and OpenCode query your coding stats, activity, and AI-assisted coding metrics.
Installation
# Run directly (stdio transport for MCP clients)
npx -y @chronova/mcp-server
# Or install globally
npm install -g @chronova/mcp-server
chronova-mcp-serverRelated MCP server: coros-mcp
Configuration
The server resolves your API key from multiple sources in priority order:
Environment variable
CHRONOVA_API_KEYConfig file
~/.chronova.cfg—api_keyunder[settings]Config file
~/.wakatime.cfg—api_keyunder[settings](WakaTime-compatible)Default: empty (requests will fail with 401)
Similarly, api_url is resolved from CHRONOVA_API_URL env var, then the config file's api_url key, then the default https://chronova.dev/api/v1.
Config files use INI format:
[settings]
api_key = waka_your-api-key-here
api_url = https://chronova.dev/api/v1Variable | Required | Default | Description |
| Yes* | — | Your Chronova API key (*or set in config file) |
| No |
| Chronova API base URL |
| No |
| Server listen port |
CLI flags override env vars: --port 3001, --api-url https://chronova.dev/api/v1, --help.
Usage with AI Clients
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"chronova": {
"command": "npx",
"args": ["-y", "@chronova/mcp-server"],
"env": {
"CHRONOVA_API_KEY": "your-api-key"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"chronova": {
"command": "npx",
"args": ["-y", "@chronova/mcp-server"],
"env": {
"CHRONOVA_API_KEY": "your-api-key"
}
}
}
}OpenCode
Add to opencode.json under mcp:
{
"mcp": {
"chronova": {
"type": "local",
"command": ["npx", "-y", "@chronova/mcp-server"],
"enabled": true,
"env": {
"CHRONOVA_API_KEY": "your-api-key"
}
}
}
}Tools
Tool | Description | Parameters |
| Get user profile, subscription, GitHub status, org memberships | None |
| Aggregated coding stats by time range |
|
| AI vs manual coding analytics |
|
| Recent coding heartbeats with filters and pagination |
|
Named ranges: today, last_7_days, last_30_days, last_3_months, last_6_months, last_year, all_time. Custom: YYYY-MM-DD_to_YYYY-MM-DD.
Development
npm run dev # Watch mode
npm test # Run tests
npm run build # Compile TypeScript
npm run type-check # Type check onlyDocker
docker build -t chronova-mcp .
docker run -e CHRONOVA_API_KEY=your-key -p 3001:3001 chronova-mcpLicense
Proprietary
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceA Model Context Protocol server that enables Claude users to access specialized OpenAI agents (web search, file search, computer actions) and a multi-agent orchestrator through the MCP protocol.410
- Alicense-qualityAmaintenanceA Model Context Protocol (MCP) server that fetches sleep, HRV, and training data from the unofficial Coros API and exposes them to AI assistants like Claude, enabling natural language queries about fitness metrics and workout management.106MIT

Cronlytic MCP Serverofficial
Alicense-qualityDmaintenanceA comprehensive Model Context Protocol (MCP) server that integrates with the Cronlytic API to provide seamless cron job management through LLM applications like Claude Desktop.1MIT- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server that connects to ActivityWatch, allowing LLMs like Claude to interact with your time tracking data.4MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/nx-solutions-ug/chronova-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server