xeve-mcp-server
MCP server for xeve.io that enables AI assistants to query personal analytics including productivity, coding, health, music, and GitHub activity.
README
xeve-mcp-server
MCP server for xeve — query your personal analytics from any AI assistant (Claude Desktop, Claude Code, etc.)
Ask questions like:
- "How much did I code today?"
- "What's my productivity trend this week?"
- "What music was I listening to yesterday?"
- "Does my sleep correlate with coding output?"
Setup
1. Get your access token
Go to xeve.io/dashboard/settings → API Access and copy your access token.
2. Configure Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"xeve": {
"command": "npx",
"args": ["-y", "xeve-mcp-server"],
"env": {
"XEVE_ACCESS_TOKEN": "your-access-token-here"
}
}
}
}
3. Configure Claude Code
claude mcp add xeve -e XEVE_ACCESS_TOKEN=your-access-token-here -- npx -y xeve-mcp-server
Tools
| Tool | Description |
|---|---|
get_productivity_summary |
Screen time, productive time, distracted time, top categories |
get_app_usage |
Which apps you used and for how long |
get_coding_summary |
Coding time by project and language |
get_health_summary |
Steps, energy, sleep, heart rate from HealthKit |
get_music_history |
Spotify listening history, top artists, recent tracks |
get_github_activity |
Commits, PRs, reviews, lines changed, active repos |
get_correlations |
Statistical correlation between any two metrics |
get_daily_trend |
Day-by-day breakdown of all metrics |
get_recent_sessions |
Most recent app sessions with window titles |
All tools accept optional from and to parameters (YYYY-MM-DD) to filter by date range. Defaults to today.
Examples
"How productive was I this week?"
→ Calls get_productivity_summary with this week's date range
"What projects did I code on yesterday?"
→ Calls get_coding_summary with yesterday's date
"Does sleep affect my coding output?"
→ Calls get_correlations with metric_a: "sleep_ms", metric_b: "coding_ms"
"Show me my daily trend for March"
→ Calls get_daily_trend with from: "2026-03-01", to: "2026-03-31"
Available correlation metrics
total_tracked_ms, productive_ms, distracted_ms, communication_ms, app_switches, coding_ms, listening_ms, tracks_played, recovery_score, strain, hrv, sleep_ms, step_count, active_energy_kcal, commits, prs_opened, prs_merged, avg_heart_rate
Development
git clone https://github.com/xeveio/xeve-mcp-server.git
cd xeve-mcp-server
npm install
npm run build
XEVE_ACCESS_TOKEN=your-token node dist/index.js
License
MIT
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.
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.
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.
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.