Skip to main content
Glama
rspace-os

RSpace MCP Server

Official
by rspace-os

unpublish_form

Hide forms from the document creation interface to temporarily disable them without deletion, maintaining form data while preventing new submissions.

Instructions

Hides a form from document creation interface

Usage: Temporarily disable forms without deletion Returns: Updated form status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
form_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • main.py:536-544 (handler)
    The handler function for the 'unpublish_form' MCP tool. It is registered via the @mcp.tool decorator and implements the core logic by calling the underlying eln_cli.unpublish_form method with the provided form_id.
    @mcp.tool(tags={"rspace"})
    def unpublish_form(form_id: int | str) -> dict:
        """
        Hides a form from document creation interface
        
        Usage: Temporarily disable forms without deletion
        Returns: Updated form status
        """
        return eln_cli.unpublish_form(form_id)
  • main.py:536-536 (registration)
    The @mcp.tool decorator registers the unpublish_form function as an MCP tool with the 'rspace' tag. FastMCP automatically discovers and registers all such decorated functions.
    @mcp.tool(tags={"rspace"})
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates this is a mutation ('Hides', 'disable') and mentions the return value ('Updated form status'), but lacks details on permissions, reversibility, or side effects. It adds some context but is incomplete for a mutation tool.

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 front-loaded with the core purpose in the first sentence, followed by usage and return details in two additional concise sentences. Every sentence adds value without redundancy, making it efficiently structured and easy to parse.

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 tool's moderate complexity (a mutation with one parameter), no annotations, and the presence of an output schema (which handles return values), the description is mostly complete. It covers purpose, usage, and return indication, but could improve by adding more behavioral details like permissions or error cases.

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 input schema has 0% description coverage, but the description compensates by implying the parameter's purpose (identifying the form to hide). Since there is only one parameter, the baseline is high, and the description adds meaningful context beyond the schema's structural definition.

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 specific action ('Hides a form') and the target resource ('from document creation interface'), distinguishing it from sibling tools like 'delete_form' (permanent removal) and 'publish_form' (opposite action). It precisely communicates what the tool does without being tautological.

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 context for when to use this tool ('Temporarily disable forms without deletion'), which implicitly distinguishes it from 'delete_form' for permanent removal. However, it does not explicitly mention alternatives like 'publish_form' or state when not to use it, keeping it from a perfect score.

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

Install Server

Other Tools

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/rspace-os/rspace-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server