Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_notifications_slack_test

Idempotent

Send a test Slack notification to validate your notification settings. Use this to confirm the integration works correctly.

Instructions

Test Slack settings.

POST /api/v1/settings/notifications/slack/test

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true, meaning the tool mutates but is safe and idempotent. The description does not add any behavioral context beyond that; it does not explain what the test does (e.g., sends a test message to Slack) or what side effects occur. Since annotations carry the safety profile, the description should add value by describing the action, but it does not.

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 extremely short and to the point, including the endpoint and a needed instruction about the body parameter. Every sentence earns its place; there is no wasted text. Structure is clean and front-loaded with the core purpose.

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 that output schema exists and the complexity is low (one parameter), the description should explain what the test does, what a successful test looks like, and whether any configuration is needed first. It only says 'Test Slack settings' and gives a body hint. This leaves the agent uncertain about the expected outcome and prerequisites, making it incomplete for a test action.

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 0%, and there is only one parameter: body, which is an open object (additionalProperties: true). The description tells the agent to 'Read the matching GET or the /schema endpoint first', which is a helpful pointer to discover the expected fields. This compensates somewhat for the lack of schema details, but it does not actually describe what the body is for (e.g., the Slack webhook URL or test message content). It is a minimal but non-zero contribution.

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 states 'Test Slack settings.' which is a clear verb (test) and resource (Slack settings). It also includes the exact endpoint. However, it does not differentiate from many sibling test tools (e.g., discord, email, gotify) except by the name, but the name itself is explicit. The purpose is understandable but could be more specific about what 'test' entails (e.g., send a test notification).

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. It does not mention that one should first configure Slack settings, or that this tests connectivity. The note about reading the GET/schema endpoint is about the body parameter, not about usage context. There is no indication of prerequisites or scenarios where this tool is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools