Skip to main content
Glama

propose_accept_subspace

Submit a governance proposal to accept a subspace DAO into the main DAO space, using the specified contract addresses and IPFS metadata.

Instructions

Propose accepting a subspace into a DAO space

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ipfsUriYesipfs:// metadata URI for the proposal
subspaceAddressYes0x address of the subspace DAO
mainVotingAddressYes0x address of the MainVoting plugin contract
spacePluginAddressYes0x address of the space plugin

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.0

TDQS

A3.7/5.0
Behavior3/5

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

The readOnlyHint=false annotation already signals a mutating operation. The description adds a meaningful behavioral nuance: it is a 'propose' action, not a direct execution, implying the creation of a governance proposal. It does not, however, disclose side effects, on-chain requirements, or consequences beyond the annotation.

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 a single, front-loaded sentence with no filler. 'Propose accepting a subspace into a DAO space' captures the essential operation efficiently and earns its place.

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

Completeness3/5

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

With all required parameters documented in the schema and the mutation flag provided by annotations, the basics are covered. However, the description omits what happens after the proposal is created, whether a wallet or signing step is needed, and any return behavior, which would help an agent invoke it confidently.

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 100%: all four required parameters have clear descriptions in the schema. The tool description itself adds no extra parameter-level meaning, so it does not need to compensate, and the baseline of 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 names a specific verb and resource: 'Propose accepting a subspace into a DAO space.' It clearly distinguishes this from siblings like propose_remove_subspace and propose_accept_editor by specifying the action (accepting) and the object (subspace).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The semantics imply this tool is used when proposing to accept a subspace into a DAO, but there is no explicit guidance about when to choose it over alternatives such as propose_remove_subspace or propose_accept_editor. No exclusions or comparison to sibling tools are provided.

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