Skip to main content
Glama

7Pace-Connector

An MCP (Model Context Protocol) server that connects Claude to the 7pace Timetracker API for Jira.

Tools

Tool

Description

list_worklogs

List work logs, filter by assignee or Jira issue, cursor-paginate

get_worklog

Get all logs for a Jira issue with total time summary

log_time

Create a new time entry (duration in minutes)

update_worklog

Update an existing entry by UUID

delete_worklog

Delete an entry by UUID

summarize_time

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 build

2. 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/v1

  • Auth: Bearer token via SEVENPACE_TOKEN env var

  • Pagination: cursor-based via pageInfo.endCursor

  • Filter params: assigneeId, externalItemId, after (cursor)

Notes

  • externalItemId is the numeric Jira issue ID (not the key like PROJ-123)

  • duration is in seconds; all tools accept/display minutes for convenience

  • Your token stays in your local ~/.claude/mcp.json and is never committed

Available Tools

6 tools
delete_worklogB

Delete a work log entry by its ID

ParametersJSON Schema
NameRequiredDescriptionDefault
worklogIdYesUUID of the work log to delete

TDQS

B3.3/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
externalItemIdYesJira issue ID (numeric, e.g. 1218057)

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
afterNoPagination cursor from a previous response's pageInfo.endCursor
assigneeIdNoFilter by assignee's Jira account ID
externalItemIdNoFilter by Jira issue ID (numeric ID, not the key)

TDQS

A3.9/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
commentNoOptional comment describing the work done
startedAtNoISO datetime when work started, e.g. 2026-07-27T09:00:00. Defaults to now.
externalItemIdYesJira issue ID (numeric ID)
durationMinutesYesDuration of work in minutes

TDQS

B3.3/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
assigneeIdNoOptional: filter by assignee Jira account ID
externalItemIdNoOptional: filter by Jira issue ID

TDQS

A3.8/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
commentNoNew comment
startedAtYesNew start datetime ISO string
worklogIdYesUUID of the work log to update
externalItemIdYesJira issue ID
durationMinutesYesNew duration in minutes

TDQS

B3.3/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 6 tool updatesv1.0.0
    • First observeddelete_worklog
    • First observedget_worklog
    • First observedlist_worklogs
    • First observedlog_time
    • First observedsummarize_time
    • First observedupdate_worklog

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a distinct purpose: listing, getting by issue, deleting, creating, updating, and summarizing work logs. There is no ambiguity between them.

Naming Consistency4/5

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.

Tool Count5/5

Six tools cover the essential operations for work log management without being excessive. The count is well-suited to the server's purpose.

Completeness4/5

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

ActivitySlowing
ResponsivenessNo issues

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

Related MCP Servers

Latest Blog Posts

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