Skip to main content
Glama

Create a post

create_post
Destructive

MUTATES Raisely data: publishes a post (a campaign/profile update). Raisely API: POST /posts with the body wrapped as { data: {...} }. Required by the API: path (the post's URL slug), body (the content), photoUrl. Link it to a profile via profileUuid (pass through fields). Extra fields (title, date, ...) via fields. Returns the created post.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesThe post content/body. Required by the API.
pathYesThe post's URL slug/path. Required by the API.
titleNoThe post title.
fieldsNoAdditional documented Raisely fields to send in the JSON write body's `data` object — merged OVER the typed fields above.
photoUrlNoURL of the post's photo. Required by the API.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the destructiveHint annotation. It discloses the API request format ('wrapped as { data: {...} }'), required-by-API fields (path, body, photoUrl), the mechanism for linking to a profile via `fields`, and the return value. This adds significant behavioral context, including a warning about photoUrl being required by the API even though not required in the schema. No contradictions with annotations.

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, with the key 'MUTATES' flag front-loaded. Every sentence provides essential information: API endpoint, required fields, profile linking, and return behavior. There is no redundancy or filler, making it highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a create operation with no output schema, the description is remarkably complete. It covers the API endpoint, request body wrapping, required parameters, optional linking, and return value. It also clarifies the distinction between schema-required fields and API-required fields, which is crucial for correct invocation. The tool's complexity (nested `fields` object, profile linking) is well addressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides 100% coverage of all parameter descriptions, so the baseline is 3. However, the description adds meaning beyond the schema by explaining that path, body, and photoUrl are required by the API, that profileUuid should be passed through `fields`, and that `fields` merges extra fields. This helps the agent understand the API's expectations and the special role of the `fields` object.

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 purpose: 'publishes a post (a campaign/profile update)' via 'POST /posts'. This distinguishes it from sibling tools like create_donation, update_profile, or raisely_request, which target different resources or operations. The verb 'publishes' and the specific API endpoint make the action unambiguous.

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 provides clear usage context: it is a mutating operation, and it explains how to link a profile via profileUuid through `fields` and how to pass extra fields. While it doesn't explicitly state 'use this instead of X' or list exclusions, the specificity of the POST /posts endpoint and the distinction from siblings like list_posts make the appropriate use case evident.

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
Disambiguation5/5

Each tool is clearly scoped to a specific resource and action. The get_/list_/create_/update_ prefixes distinguish reads from mutations, and the convenience listers are explicitly labeled, so there is no real overlap or confusion.

Naming Consistency4/5

Tool names largely follow a consistent verb_noun pattern (create_, get_, list_, update_). The only outlier is raisely_request, which is a generic escape hatch but breaks the pattern slightly.

Tool Count3/5

With 23 tools, the server is on the heavy side. While each tool maps to a distinct API endpoint, several convenience wrappers (list_campaign_donations, list_user_donations) add redundancy without significantly expanding functionality.

Completeness2/5

The tool surface is heavily read-oriented. Many core resources like campaigns, subscriptions, posts, and orders lack create/update/delete operations, and the read-only raisely_request cannot fill these gaps, leaving agents unable to perform common management tasks.