timepiece-mcp
MCP server integrating OBSS Timepiece Time in Status for Jira, enabling queries about issue durations, status histories, and aggregated metrics via natural language.
README
timepiece-mcp
An MCP server that lets Claude query OBSS Timepiece Time in Status data for Jira issues.
Ask Claude things like:
- "How long has PROJ-123 spent in each status?"
- "Show me the full lifecycle of PROJ-456 including how many times it went back into Development"
- "What is the average cycle time for tickets closed this sprint?"
- "Which status is causing the biggest delays in our project?"
- "Export a CSV of time-in-status for all tickets resolved this month"
Prerequisites
- uv — fast Python package manager
- A Jira instance with Timepiece installed
- A personal Timepiece API token (see below)
Get your Timepiece API token
- In Jira, go to Apps → Timepiece → API Settings
- Click Create New Token
- Copy the token
⚠️ Keep this token secret — it grants access to your Jira data through Timepiece.
Installation
Claude Desktop
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"timepiece": {
"command": "uvx",
"args": ["timepiece-mcp"],
"env": {
"TIMEPIECE_TOKEN": "your-token-here",
"TIMEPIECE_CALENDAR": "your-calendar-id"
}
}
}
}
Restart Claude Desktop. You'll see a 🔌 icon confirming the server is connected.
Claude Code (CLI)
claude mcp add timepiece uvx timepiece-mcp \
-e TIMEPIECE_TOKEN=your-token-here \
-e TIMEPIECE_CALENDAR=your-calendar-id
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
TIMEPIECE_TOKEN |
✅ Yes | — | Your personal Timepiece API token |
TIMEPIECE_CALENDAR |
Recommended | — | Default calendar ID for business-hours calculations. Without this, durations use a 24h/day UTC clock and will be wrong for most teams. |
TIMEPIECE_DEFAULT_DAY_LENGTH |
No | businessDays |
businessDays or calendarDays |
TIMEPIECE_DEFAULT_VIEW_FORMAT |
No | days |
days, hours, minutes, or seconds |
Finding your calendar ID: In Jira go to Apps → Timepiece → Settings → Calendars. The numeric ID is shown next to each calendar. You can also ask Claude to run timepiece_list_calendars after setup to see all available calendars and their IDs.
Available tools
| Tool | What it does |
|---|---|
timepiece_get_issue |
Time spent in each status for a single issue — returned as a Status / Duration / Visits table |
timepiece_get_issue_expanded |
Full status history for a single issue: visit counts, min/max/average per status, and a chronological transition timeline |
timepiece_list_issues |
Time-in-status for a set of issues defined by a JQL query, returned as an issues × statuses matrix |
timepiece_aggregate |
Average, median, sum or standard deviation of time-in-status across any JQL-filtered set of issues; also supports lead time and cycle time calculations |
timepiece_list_calendars |
Lists all Timepiece calendars configured for your Jira instance, including IDs, timezones and working hours |
timepiece_search_calendar |
Finds a calendar by name and returns its ID |
timepiece_export_sync |
Exports a time-in-status report as CSV or XLSX for any JQL-filtered set of issues, saving the file locally |
Example prompts
How long did PROJ-123 spend in each status?
Show me the full lifecycle of PROJ-456 including how many times it went back into Development
What is the average cycle time for tickets closed in PROJ this sprint?
Which status is causing the biggest delays in project PROJ?
Compare average development time across the team for last sprint
Export a CSV of time-in-status for all PROJ tickets resolved this month
What calendars are configured in Timepiece?
Sharing with your team
Each team member needs their own Timepiece token:
- Get a token from Jira → Apps → Timepiece → API Settings
- Add the config block above to their Claude Desktop or Claude Code config
- Use their own token — tokens are personal and tied to each person's Jira identity
Local development
git clone https://github.com/gianni1989/timepiece-mcp
cd timepiece-mcp
cp .env.example .env # fill in your token and calendar ID
uv sync
uv run timepiece-mcp
Run the test suite:
TIMEPIECE_TOKEN=your-token TIMEPIECE_CALENDAR=your-calendar-id uv run python test_tools.py
Troubleshooting
"TIMEPIECE_TOKEN environment variable is not set"
→ Add TIMEPIECE_TOKEN to the env block in your Claude config and restart.
"Unauthorised — your TIMEPIECE_TOKEN is invalid or expired" → Go to Jira → Apps → Timepiece → API Settings and generate a new token.
"Not found — the issue key does not exist"
→ Verify the issue key format: it must be PROJECT-NUMBER in uppercase, e.g. PROJ-123.
Durations seem too large (e.g. 3× bigger than expected)
→ Set TIMEPIECE_CALENDAR to your calendar's numeric ID. Without it, the API uses a 24h/day UTC clock instead of your business hours.
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.