Tenpace Review Router
Server Details
Human-authenticated setup for routing GitHub pull requests into the right Slack channel.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- tenpace-app/review-router-setup
- GitHub Stars
- 0
- Server Listing
- io.github.Patrax/review-router
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 5 of 5 tools scored.
Each tool covers a distinct phase of the setup workflow: start creates an inert plan, preview reads the plan, apply executes it, status reports progress, and send tests the delivery path. No two tools share the same purpose.
All tool names follow the same verb_review_router_setup pattern with clear actions (start, preview, apply, get, send). The consistent structure makes the set easy to navigate.
Five tools is ideal for a focused setup lifecycle—enough to cover the workflow without redundancy or overload.
The setup workflow is fully represented: initiation, planning, application, status tracking, and testing. There are no obvious dead ends or missing operations for the stated purpose.
Available Tools
5 toolsapply_review_router_setupApply Review Router setupAIdempotentInspect
Idempotently create or reconcile the route after the person completing setup signed in, claimed the current intent, and connected both providers.
| Name | Required | Description | Default |
|---|---|---|---|
| setupId | Yes | Setup-session ID | |
| agentToken | Yes | Secret returned at creation |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond annotations by explicitly stating idempotency ('Idempotently create or reconcile') and the reconcile semantics, which reveals that the tool may adjust an existing route rather than only creating. The annotations already mark idempotentHint=true, so the extra detail about 'reconcile' enhances transparency without contradicting structured data.
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 that efficiently combines action, prerequisites, and idempotency. Every word contributes meaningful context with no redundancy, earning a top score for conciseness.
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 moderate complexity (2 required params, no output schema, strong annotations), the description adequately covers its purpose and prerequisites. It does not mention error conditions or response details, but these are often unnecessary for a setup tool when the schema and annotations provide sufficient context. A slightly more explicit mention of what 'apply' results in could push it to a 5.
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 input schema already provides 100% coverage for both parameters with clear descriptions ('Setup-session ID' and 'Secret returned at creation'). The description does not add parameter-specific meaning beyond what the schema states, so it meets the baseline but does not exceed it.
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 ('Idempotently create or reconcile') and the resource ('the route'), with specific prerequisites that frame the tool's scope. It distinguishes itself from siblings like 'start_review_router_setup' by referencing the post-setup phase, making the purpose unambiguous.
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 provides clear context for when to use the tool: 'after the person completing setup signed in, claimed the current intent, and connected both providers.' It does not explicitly name alternatives or exclusions, but the prerequisites imply a natural workflow order, which is a clear usage guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_review_router_setup_statusGet Review Router setup statusARead-onlyIdempotentInspect
Read structured progress and the next required human action.
| Name | Required | Description | Default |
|---|---|---|---|
| setupId | Yes | Setup-session ID | |
| agentToken | Yes | Secret returned at creation |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, which cover the safety profile. The description adds meaningful behavioral context by specifying that the tool returns 'structured progress' and 'the next required human action', which is valuable given there is no output schema. This does not contradict the annotations.
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 clear sentence that fully conveys the tool's purpose without wasted words. It is front-loaded with the verb and salient detail about what the read returns.
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?
Despite having no output schema, the description adequately explains what the tool returns (progress and next human action), which is sufficient for a status-read tool. The two required parameters are well-documented in the schema, and the tool's simplicity does not demand more in the description.
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 input schema has 100% description coverage for both parameters (setupId and agentToken), so the schema already documents their meaning. The description adds no parameter-specific detail, but given the high schema coverage, the baseline 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 uses the specific verb 'Read' to define the action, and specifies the resource as 'structured progress and the next required human action', which clearly indicates a status/read operation. It distinguishes from sibling tools that apply, preview, send, or start the setup, though it does not explicitly name alternatives.
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 this tool is used to check progress and next steps after starting a setup, but it provides no explicit guidance on when to use it versus the sibling tools. There are no stated exclusions or alternative recommendations, so the usage context is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_review_router_setupPreview Review Router setupARead-onlyIdempotentInspect
Read the exact current intent version and locked setup plan before asking a human to continue.
| Name | Required | Description | Default |
|---|---|---|---|
| setupId | Yes | Setup-session ID | |
| agentToken | Yes | Secret returned at creation |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only, idempotent, and non-destructive behavior. The description adds value by specifying exactly what content is read (current intent version and locked setup plan), which goes beyond the generic annotation hints and clarifies the tool's role as a preview step.
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 primary action, and contains no redundant information. It is perfectly scoped for 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?
For a simple read-only preview tool with 2 parameters and strong annotations, the description is adequate. It captures the workflow position and core function, though it does not describe the return format—but this is acceptable given the lack of an output schema and the straightforward nature of the 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?
Both parameters have schema descriptions (100% coverage), so the baseline is 3. The tool description does not add any additional meaning to the parameters beyond the schema, which already clearly describes them as setup-session ID and secret token.
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 names a specific action ('Read') and specific resources ('current intent version and locked setup plan'), clearly distinguishing it from sibling tools like apply, start, or get status. It also adds workflow context ('before asking a human to continue'), which clarifies its role in the setup process.
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 phrase 'before asking a human to continue' provides an explicit trigger for when to use this tool, giving clear usage context. However, it does not mention alternatives or when not to use it, so it falls short of a full when/when-not comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_review_router_testSend Review Router verification messageAIdempotentInspect
After route application, idempotently send one real Slack setup message through the production delivery path.
| Name | Required | Description | Default |
|---|---|---|---|
| setupId | Yes | Setup-session ID | |
| agentToken | Yes | Secret returned at creation |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide idempotentHint=true and readOnlyHint=false, but the description adds crucial context that this sends a 'real' Slack message through production, making the side effect explicit. It also restates idempotency in prose, reinforcing safe retry behavior. It does not disclose potential errors or rate limits, but the core behavior is well covered.
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 that conveys purpose, timing, idempotency, and the production delivery path with no wasted words. Every element earns its place.
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 only two well-documented parameters and no output schema, the description is nearly complete: it says what happens, when to call it, and that it is idempotent. It could have explicitly mentioned preview alternatives or side-effect prerequisites, but the current content is sufficient for an agent to select and invoke 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% and parameter descriptions ('Setup-session ID', 'Secret returned at creation') are clear. The tool description itself does not add parameter-specific meaning, so the baseline score of 3 is appropriate because the schema already carries the semantic weight.
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 'send' and resource 'real Slack setup message through the production delivery path,' distinguishing it from preview-like siblings. It also includes a key sequencing cue ('After route application') that adds specific scope.
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 phrase 'After route application' indicates when this tool should be used, and 'real Slack setup message through the production delivery path' implies it is for actual delivery rather than preview. However, it does not explicitly name alternatives like preview_review_router_setup or state 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.
start_review_router_setupStart Review Router setupAIdempotentInspect
Create an inert GitHub-to-Slack setup plan and return one browser sign-in URL for the person completing setup.
| Name | Required | Description | Default |
|---|---|---|---|
| preset | No | repo_watch | |
| repository | Yes | GitHub repository in owner/repository format | |
| slackChannel | Yes | Slack channel name, with or without # | |
| idempotencyKey | No | ||
| slackWorkspace | No | Optional exact workspace name, Slack team ID, or Tenpace workspace ID | |
| reviewerMentions | No | all |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already mark the operation as idempotent and non-destructive, and the description adds context about the 'inert' plan and the browser sign-in URL. This goes beyond the annotations by clarifying that no immediate action is taken on GitHub/Slack, which is useful behavioral detail.
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, well-structured sentence with no filler. It front-loads the core action and result, making it instantly scannable for an agent.
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 (6 parameters) and the absence of an output schema, the description adequately covers the key return value (one URL) and the inert nature of the setup. It doesn't explain downstream steps or how the plan is stored, but sibling tools and annotations fill these gaps, making it sufficiently complete.
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 description provides no parameter information, and with schema coverage at only 50%, parameters like 'preset', 'idempotencyKey', and 'reviewerMentions' lack descriptions in both the schema and the tool description. The enums and defaults help slightly, but the agent gets no guidance on how to choose appropriate values.
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 tool creates an inert GitHub-to-Slack setup plan and returns a browser sign-in URL. This distinguishes it from siblings like apply_review_router_setup and preview_review_router_setup by focusing on the initial setup step.
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 use for initiating setup via the word 'create' and 'inert,' but it doesn't explicitly explain when to prefer this over apply or get status. The context is clear enough for an agent to infer the intended workflow, though no direct alternatives are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Flicense-qualityAmaintenanceConnects Claude to GitHub via OAuth and proxies official GitHub MCP tools, allowing each end user to interact with GitHub as themselves.Last updated
- Flicense-qualityCmaintenanceStreamlines GitHub PR workflows, monitors CI/CD, and sends Slack notifications. Provides tools for PR analysis, CI monitoring, and follow-up tasks.Last updated
- FlicenseAqualityBmaintenanceConnects Claude to GitHub, enabling listing repositories, browsing open pull requests, and inspecting PR diffs for code review.Last updated4
- Alicense-qualityCmaintenanceEnables interacting with GitHub repositories for pull requests, code, and reviews through natural language.Last updatedMIT
Your Connectors
Sign in to create a connector for this server.