Skip to main content
Glama

mcp

resubmit_news

Revise and reclassify a news article that draft_news (or a previous resubmit_news call) rejected as "flagged". Every call is its own fully logged classification attempt against the news_id's audit trail — never a silent status flip. Publishes the revision live only if the classifier now returns "green". Only the account that originally submitted the article (via draft_news) may resubmit it — a different account's api_key is rejected, even a valid one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesRevised article body (English)
titleYesRevised article title (English)
api_keyNoYour Datronis personal access token (starts with "dtk_"). Generate one at /app/api-keys/. Required unless sent as an `Authorization: Bearer <token>` HTTP header instead (preferred — see search_jobs' api_key description for why). Publishing is open to anyone with an account — this token exists for rate-limiting and an audit trail, not to gate who may publish.
news_idYesThe news_id returned by a previous draft_news call
content_formatNoBody format. Use "markdown" for headings, tables, lists, code blocks, links and images; use "html" for rich HTML with classes and inline CSS. Defaults to html for backward compatibility.html
target_localesNoSame as draft_news — only used if this revision is approved
allow_self_translationNoSame as draft_news. Omit to leave the article's existing setting unchanged; pass explicitly to change it.

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries full burden and excels. It discloses that every call is a fully logged classification attempt, that publication only occurs if the classifier returns 'green', and that non-owner api_keys are rejected. These are significant behavioral traits beyond a simple 'resubmit' action, offering clear expectations.

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 four sentences long but every sentence adds unique value: purpose, audit/publish behavior, ownership gating, and api context. It is front-loaded with the main function and efficiently packs critical behavioral details without redundancy or fluff.

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 7 parameters, no output schema, and no annotations, the description covers essential context: when to use, ownership, classification attempts, and publication rule. It might have explained the response or failure modes, but the provided behavioral details are strong. A minor gap is the lack of info on what happens if the classifier returns a non-green status beyond not publishing, but the text implies the revision remains flagged.

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 has 100% description coverage, providing detailed explanations for all parameters. The description adds context about the api_key's ownership gating and 'same as draft_news' for some params, but these are complementary rather than essential, as the schema already explains each parameter's role. Baseline 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 tool's function: revising and reclassifying a news article rejected as 'flagged' by draft_news or a prior resubmit_news call. It distinguishes from sibling tools by emphasizing the resubmission context and its relationship to the audit trail, using specific verbs and resources.

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 explicitly defines when to use this tool: after a 'flagged' rejection, and it notes that only the original submitter can resubmit. It does not name alternative tools but the context makes the use case clear. It also implies this is not for new submissions or silent status chages, providing practical exclusions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

The admin_* tools are clearly separated by permission level, and most tools have distinct resource+action purposes. There is some overlap between admin_create_news and draft_news (both create news) and between admin_translate_news and submit_news_translation (both translate), but the descriptions clarify the differences. Overall, an agent can usually tell tools apart.

Naming Consistency4/5

Most tools follow a snake_case verb_noun pattern (admin_create_news, get_news, search_jobs). Minor inconsistencies include apply_to_job instead of apply_job, and using get_my_applications vs list_my_resumes for similar user-specific listings. Despite these, the naming is predictable and readable.

Tool Count4/5

Seventeen tools is slightly heavy, but the server covers multiple domains: news management, translations, job search/application, and platform statistics. Each tool appears to serve a distinct need, so the count is reasonable for the platform's scope.

Completeness3/5

The core workflows are covered: searching and applying to jobs, reading and translating news, and getting stats. However, there is no delete or non-admin edit for news articles (only resubmit_news for flagged drafts), and no resume creation/update tools. These gaps require workarounds or admin privileges.

Resources