7Pace-Connector
Provides tools for managing time tracking in Jira via 7pace API, including listing work logs, getting logs for issues, logging time, updating and deleting entries, and summarizing time by issue.
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., "@7Pace-Connectorlog 30 minutes to issue 12345"
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.
7Pace-Connector
An MCP (Model Context Protocol) server that connects Claude to the 7pace Timetracker API for Jira.
Tools
Tool | Description |
| List work logs, filter by assignee or Jira issue, cursor-paginate |
| Get all logs for a Jira issue with total time summary |
| Create a new time entry (duration in minutes) |
| Update an existing entry by UUID |
| Delete an entry by UUID |
| Paginate all logs and show total + breakdown by Jira issue |
Related MCP server: used-tempon
Setup
1. Install dependencies and build
npm install
npm run build2. Generate a 7pace API token
In 7pace → Settings → API Tokens → generate a new token.
3. Register in Claude Code
Add to your ~/.claude/mcp.json:
{
"mcpServers": {
"7Pace-Connector": {
"command": "node",
"args": ["/path/to/TimeReporting/dist/index.js"],
"env": {
"SEVENPACE_TOKEN": "your-token-here"
}
}
}
}Restart Claude Code. The MCP server will connect automatically.
API Details
Base URL:
https://timehubjra.7pace.com/api/v1Auth: Bearer token via
SEVENPACE_TOKENenv varPagination: cursor-based via
pageInfo.endCursorFilter params:
assigneeId,externalItemId,after(cursor)
Notes
externalItemIdis the numeric Jira issue ID (not the key likePROJ-123)durationis in seconds; all tools accept/display minutes for convenienceYour token stays in your local
~/.claude/mcp.jsonand is never committed
Available Tools
6 toolsdelete_worklogB
Delete a work log entry by its ID
| Name | Required | Description | Default |
|---|---|---|---|
| worklogId | Yes | UUID of the work log to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description states it deletes a worklog but does not disclose behavioral traits like permanence, permissions required, side effects (e.g., cascading deletions), or confirmation steps. With no annotations provided, the description should carry the burden of transparency but fails to do so adequately.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence without any extraneous words. It efficiently communicates the core purpose and method, meeting conciseness and front-loading expectations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and no output schema, the description is minimally viable. However, it lacks details on what happens after deletion (e.g., success response) and any potential consequences, which are important for an agent to fully understand the tool's behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage with a clear description of the worklogId parameter as 'UUID of the work log to delete'. The description adds no additional semantic value beyond verifying the use of ID, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Delete') and the resource ('work log entry') using the identifier method ('by its ID'). It directly distinguishes from sibling tools like list_worklogs, get_worklog, log_time, update_worklog, and summarize_time, which perform different operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives, such as whether the worklog must first exist or if there are prerequisites. There is no mention of when not to use it or potential alternatives for non-destructive actions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_worklogC
Get all work logs for a specific Jira issue ID
| Name | Required | Description | Default |
|---|---|---|---|
| externalItemId | Yes | Jira issue ID (numeric, e.g. 1218057) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only states that the tool retrieves work logs, with no mention of authentication, rate limits, error handling, or behavior when the issue ID is invalid.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the verb. It is efficient but could be slightly more detailed without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with low complexity (one parameter, no output schema, no annotations), the description is minimally adequate. However, it lacks behavioral context that would help an agent anticipate outcomes or prerequisites.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the input schema already describes the parameter (externalItemId) with an example. The description adds no further meaning or context for the parameter, so it meets the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (get), resource (all work logs), and scope (for a specific Jira issue ID). However, it does not differentiate from the sibling tool 'list_worklogs', which may have a similar purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like list_worklogs or log_time. The context signals show five siblings, but the description does not address usage context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_worklogsA
List work logs from 7pace. Supports filtering by assignee or Jira issue. Paginates via cursor.
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Pagination cursor from a previous response's pageInfo.endCursor | |
| assigneeId | No | Filter by assignee's Jira account ID | |
| externalItemId | No | Filter by Jira issue ID (numeric ID, not the key) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses pagination behavior via cursor but does not explicitly state that the operation is read-only or mention any side effects, rate limits, or permissions. For a list operation, this is acceptable but not fully transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the key verb and resource, then adds filtering and pagination details. Every sentence serves a purpose with no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should help infer the response structure. It mentions pagination and filtering but does not describe the work log fields returned or the pagination format (e.g., edges, nodes). This leaves some ambiguity for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with each parameter described (cursor, assigneeId, externalItemId). The description adds that filtering is by 'assignee or Jira issue,' which aligns with the parameters but does not provide additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' with 'work logs from 7pace,' clearly identifying the resource and action. It mentions filtering by assignee or Jira issue, which distinguishes it from sibling tools like get_worklog (single) and log_time (create).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states it supports filtering and pagination, implying usage for listing multiple logs with optional filters. However, it does not explicitly say when not to use it (e.g., for a single log use get_worklog), but the sibling context makes it clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
log_timeB
Create a new work log entry in 7pace for a Jira issue. Duration in minutes.
| Name | Required | Description | Default |
|---|---|---|---|
| comment | No | Optional comment describing the work done | |
| startedAt | No | ISO datetime when work started, e.g. 2026-07-27T09:00:00. Defaults to now. | |
| externalItemId | Yes | Jira issue ID (numeric ID) | |
| durationMinutes | Yes | Duration of work in minutes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description provides minimal behavioral insight. It does not explain side effects (e.g., overwrite behavior), required permissions, error handling, or what happens if the Jira issue ID is invalid. Only basic operation is stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no extraneous words. It efficiently conveys the core purpose, though it could be slightly more detailed without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (4 parameters, no output schema), the description lacks completeness. It omits essential context such as required authentication scopes, time zone handling for startedAt, and response format. A novice user would have insufficient guidance to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the tool description adds little beyond what the schema already provides. The mention of 'Duration in minutes' reinforces the unit but does not add new semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create'), the resource ('new work log entry'), and the context ('in 7pace for a Jira issue'). It also specifies the unit of duration ('Duration in minutes'), which distinguishes it from sibling tools like list_worklogs or get_worklog.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives such as update_worklog or summarize_time. The purpose is implied by the verb 'Create', but the description does not mention prerequisites or conditions for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
summarize_timeA
Fetch all work logs (with optional assignee/issue filter) and summarize total time logged, grouped by Jira issue
| Name | Required | Description | Default |
|---|---|---|---|
| assigneeId | No | Optional: filter by assignee Jira account ID | |
| externalItemId | No | Optional: filter by Jira issue ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description must convey behavior. It states 'fetch all work logs,' indicating a read-only operation, but does not disclose potential side effects, rate limits, or pagination behavior. Minimal but accurate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The single-sentence description is concise and front-loaded with the core action, containing no redundant words. It efficiently communicates the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple tool (2 optional params, no nested objects, no output schema), the description suffices by specifying the grouping by Jira issue. A minor gap is the lack of detail on the output format (e.g., fields returned), but overall adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear descriptions for both parameters. The description restates 'optional assignee/issue filter' without adding new syntax or constraints beyond the schema, meeting the baseline for full coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it fetches work logs and summarizes total time grouped by Jira issue, with optional filters. The verb 'summarize' and resource 'total time' distinguish it from sibling tools like list_worklogs or get_worklog.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for aggregated time reporting with optional filters, but provides no explicit guidance on when to use this over alternatives like list_worklogs or log_time. Missing 'when not to use' or comparison phrases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_worklogB
Update an existing work log entry by its ID
| Name | Required | Description | Default |
|---|---|---|---|
| comment | No | New comment | |
| startedAt | Yes | New start datetime ISO string | |
| worklogId | Yes | UUID of the work log to update | |
| externalItemId | Yes | Jira issue ID | |
| durationMinutes | Yes | New duration in minutes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It only states 'update' without disclosing behavioral traits such as whether it overwrites all fields, offers partial updates, or requires specific permissions. No side effects or validation details are mentioned.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The single-sentence description is concise and to the point, avoiding unnecessary words. However, it could include more context without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 5 parameters and no output schema or annotations, the description is incomplete. It does not explain update behavior (e.g., whether all fields must be provided) or what the tool returns. More context is needed for an effective mutation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters. The description adds no additional meaning beyond what is in the schema, thus baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Update' and the resource 'existing work log entry', with identification by ID. It effectively distinguishes from sibling tools like list_worklogs, get_worklog, delete_worklog, and log_time.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for modifying existing worklogs but provides no explicit guidance on when to use this tool versus alternatives, nor any context about prerequisites or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.0- First observed
delete_worklog - First observed
get_worklog - First observed
list_worklogs - First observed
log_time - First observed
summarize_time - First observed
update_worklog
TDQS
Each tool has a distinct purpose: listing, getting by issue, deleting, creating, updating, and summarizing work logs. There is no ambiguity between them.
Most tools follow a verb_noun pattern (list_worklogs, get_worklog, delete_worklog, update_worklog). 'log_time' and 'summarize_time' use 'time' instead of 'worklog', but the pattern is still consistent and clear.
Six tools cover the essential operations for work log management without being excessive. The count is well-suited to the server's purpose.
CRUD operations are covered (create via log_time, read via list_worklogs and get_worklog, update, delete) plus a summary function. A direct get-by-ID is missing, but list_worklogs and get_worklog cover retrieval adequately.
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 Connectors
- platform7nOAuthtech.p7n
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
Read time entries, projects, clients, tasks and invoices; log and update tracked time.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.
Related MCP Servers
- FlicenseBqualityDmaintenanceConnects Claude to Jira, allowing users to query tasks, log work, add comments, and execute JQL queries through conversational AI.22-
- FlicenseNot gradedqualityDmaintenanceEnables logging time to Tempo (Jira time tracker) via natural language in Claude Desktop or OpenCode.-
- AlicenseAqualityCmaintenanceEnables Claude to manage ATimeLogger time tracking: start/stop/pause activities, log intervals, and get reports via natural language.108612MIT
- AlicenseAqualityDmaintenanceEnables Claude to interact with Toggl Track for time tracking, including starting/stopping timers, viewing current entries, and summarizing time by project via natural language.726MIT
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/Tzachi-Shahak/TimeReporting'
If you have feedback or need assistance with the MCP directory API, please join our Discord server