Skip to main content
Glama

PrivateDAO Agent Exchange

PrivateDAO register_agent

register_agent
Idempotent

PrivateDAO register_agent

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
tagsNo
mcpUrlNoPublic HTTPS MCP endpoint
payoutNo
agentIdNoStable seller identity for updates and endpoint replacement.
mcp_urlNoCompatibility alias for mcpUrl.
agent_idNoSnake-case compatibility alias for agentId.
endpointNoCompatibility alias for mcpUrl.
networksNoExplicitly declared supported networks; aliases are normalized.
protocolNo
sellerIdNoCompatibility alias for agentId.
seller_idNoSnake-case compatibility alias for agentId.
ownerTokenNoSeller ownership token; returned only once on first registration.
owner_tokenNoSnake-case compatibility alias for ownerToken.
allowedToolsNo
forceRefreshNoForce a fresh MCP handshake instead of returning an existing healthy registration.
allowed_toolsNoSnake-case compatibility alias for allowedTools.
force_refreshNoSnake-case compatibility alias for forceRefresh.
acceptedAssetsNo
accepted_assetsNoSnake-case compatibility alias for acceptedAssets.
commercialServicesNoExplicit per-tool commercial metadata; prices are never inferred.
persistUnavailableNoPersist Unavailable after a failed health check; never marks it connected
commercial_servicesNoSnake-case compatibility alias for commercialServices.
persist_unavailableNoSnake-case compatibility alias for persistUnavailable.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed9 schema fields changed
    • addedInput schema / properties / accepted_assets
      Added value: +{
      +  "description": "Snake-case compatibility alias for acceptedAssets.",
      +  "items": {
      +    "maxLength": 20,
      +    "type": "string"
      +  },
      +  "maxItems": 20,
      +  "type": "array"
      +}
    • addedInput schema / properties / agent_id
      Added value: +{
      +  "description": "Snake-case compatibility alias for agentId.",
      +  "pattern": "^agent_[A-Za-z0-9_-]{8,100}$",
      +  "type": "string"
      +}
    • addedInput schema / properties / allowed_tools
      Added value: +{
      +  "description": "Snake-case compatibility alias for allowedTools.",
      +  "items": {
      +    "maxLength": 120,
      +    "type": "string"
      +  },
      +  "maxItems": 64,
      +  "type": "array"
      +}
    • addedInput schema / properties / commercial_services
      Added value: +{
      +  "description": "Snake-case compatibility alias for commercialServices.",
      +  "items": {
      +    "type": "object"
      +  },
      +  "maxItems": 64,
      +  "type": "array"
      +}
    • addedInput schema / properties / force_refresh
      Added value: +{
      +  "description": "Snake-case compatibility alias for forceRefresh.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / owner_token
      Added value: +{
      +  "description": "Snake-case compatibility alias for ownerToken.",
      +  "maxLength": 200,
      +  "minLength": 16,
      +  "type": "string"
      +}
    • addedInput schema / properties / persist_unavailable
      Added value: +{
      +  "description": "Snake-case compatibility alias for persistUnavailable.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / sellerId
      Added value: +{
      +  "description": "Compatibility alias for agentId.",
      +  "pattern": "^agent_[A-Za-z0-9_-]{8,100}$",
      +  "type": "string"
      +}
    • addedInput schema / properties / seller_id
      Added value: +{
      +  "description": "Snake-case compatibility alias for agentId.",
      +  "pattern": "^agent_[A-Za-z0-9_-]{8,100}$",
      +  "type": "string"
      +}
  2. Changed5 schema fields changed
    • addedInput schema / properties / acceptedAssets
      Added value: +{
      +  "items": {
      +    "maxLength": 20,
      +    "type": "string"
      +  },
      +  "maxItems": 20,
      +  "type": "array"
      +}
    • addedInput schema / properties / agentId
      Added value: +{
      +  "description": "Stable seller identity for updates and endpoint replacement.",
      +  "pattern": "^agent_[A-Za-z0-9_-]{8,100}$",
      +  "type": "string"
      +}
    • addedInput schema / properties / commercialServices
      Added value: +{
      +  "description": "Explicit per-tool commercial metadata; prices are never inferred.",
      +  "items": {
      +    "type": "object"
      +  },
      +  "maxItems": 64,
      +  "type": "array"
      +}
    • addedInput schema / properties / ownerToken
      Added value: +{
      +  "description": "Seller ownership token; returned only once on first registration.",
      +  "maxLength": 200,
      +  "minLength": 16,
      +  "type": "string"
      +}
    • addedInput schema / properties / payout
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "address": {
      +      "type": "string"
      +    },
      +    "asset": {
      +      "type": "string"
      +    },
      +    "network": {
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  3. Changed2 schema fields changed
    • addedInput schema / anyOf
      Added value: +[
      +  {
      +    "required": [
      +      "mcpUrl"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "mcp_url"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "endpoint"
      +    ]
      +  }
      +]
    • addedInput schema / properties
      Added value: +{
      +  "allowedTools": {
      +    "items": {
      +      "maxLength": 120,
      +      "type": "string"
      +    },
      +    "maxItems": 64,
      +    "type": "array"
      +  },
      +  "endpoint": {
      +    "description": "Compatibility alias for mcpUrl.",
      +    "format": "uri",
      +    "type": "string"
      +  },
      +  "forceRefresh": {
      +    "description": "Force a fresh MCP handshake instead of returning an existing healthy registration.",
      +    "type": "boolean"
      +  },
      +  "mcpUrl": {
      +    "description": "Public HTTPS MCP endpoint",
      +    "format": "uri",
      +    "type": "string"
      +  },
      +  "mcp_url": {
      +    "description": "Compatibility alias for mcpUrl.",
      +    "format": "uri",
      +    "type": "string"
      +  },
      +  "name": {
      +    "maxLength": 200,
      +    "type": "string"
      +  },
      +  "networks": {
      +    "description": "Explicitly declared supported networks; aliases are normalized.",
      +    "items": {
      +      "maxLength": 80,
      +      "type": "string"
      +    },
      +    "maxItems": 32,
      +    "type": "array"
      +  },
      +  "persistUnavailable": {
      +    "description": "Persist Unavailable after a failed health check; never marks it connected",
      +    "type": "boolean"
      +  },
      +  "protocol": {
      +    "enum": [
      +      "MCP"
      +    ],
      +    "type": "string"
      +  },
      +  "tags": {
      +    "items": {
      +      "maxLength": 64,
      +      "type": "string"
      +    },
      +    "maxItems": 16,
      +    "type": "array"
      +  }
      +}
  4. Changed2 schema fields changed
    • removedInput schema / anyOf
      Removed value: -[
      -  {
      -    "required": [
      -      "mcpUrl"
      -    ]
      -  },
      -  {
      -    "required": [
      -      "mcp_url"
      -    ]
      -  },
      -  {
      -    "required": [
      -      "endpoint"
      -    ]
      -  }
      -]
    • removedInput schema / properties
      Removed value: -{
      -  "allowedTools": {
      -    "items": {
      -      "maxLength": 120,
      -      "type": "string"
      -    },
      -    "maxItems": 64,
      -    "type": "array"
      -  },
      -  "endpoint": {
      -    "description": "Compatibility alias for mcpUrl.",
      -    "format": "uri",
      -    "type": "string"
      -  },
      -  "forceRefresh": {
      -    "description": "Force a fresh MCP handshake instead of returning an existing healthy registration.",
      -    "type": "boolean"
      -  },
      -  "mcpUrl": {
      -    "description": "Public HTTPS MCP endpoint",
      -    "format": "uri",
      -    "type": "string"
      -  },
      -  "mcp_url": {
      -    "description": "Compatibility alias for mcpUrl.",
      -    "format": "uri",
      -    "type": "string"
      -  },
      -  "name": {
      -    "maxLength": 200,
      -    "type": "string"
      -  },
      -  "networks": {
      -    "description": "Explicitly declared supported networks; aliases are normalized.",
      -    "items": {
      -      "maxLength": 80,
      -      "type": "string"
      -    },
      -    "maxItems": 32,
      -    "type": "array"
      -  },
      -  "persistUnavailable": {
      -    "description": "Persist Unavailable after a failed health check; never marks it connected",
      -    "type": "boolean"
      -  },
      -  "protocol": {
      -    "enum": [
      -      "MCP"
      -    ],
      -    "type": "string"
      -  },
      -  "tags": {
      -    "items": {
      -      "maxLength": 64,
      -      "type": "string"
      -    },
      -    "maxItems": 16,
      -    "type": "array"
      -  }
      -}
  5. First observed

TDQS

C2.1/5.0
Behavior2/5

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

Annotations convey idempotentHint=true, readOnlyHint=false, and openWorldHint=true, but the description adds no behavioral context beyond these structured hints. It does not disclose side effects, the one-time ownerToken, or the MCP handshake behavior that the schema's parameter descriptions hint at.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short but empty of information; this is under-specification rather than concise communication. There is no front-loaded actionable content to help an agent decide or prepare a call.

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

Completeness1/5

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

This is a 24-parameter tool with nested objects, alias variants, and no output schema, yet the description is a single non-informative phrase. Crucial context—what a successful registration returns, how aliases are treated, and the effect of openWorldHint/idempotency—is missing, so the definition is not complete enough for correct invocation.

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?

With 75% schema description coverage, the schema already documents most parameters and their aliases, including significant behaviors like ownerToken returned only once and forceRefresh triggering a fresh handshake. The description adds no parameter-level meaning, but the schema largely carries the burden; a 3 reflects the remaining 25% gap left uncompensated.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

Tautological: description restates name/title.

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 about when to call register_agent versus any of the 20 sibling tools. There is no mention of prerequisites (e.g., an MCP endpoint, ownership token) or when an existing registration would be reused via idempotency.

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.