You're viewing a demo portfolio

Join the waitlist
PRSM
This tool is no longer present in the server's latest manifest. Showing the last observed version (server version 0.9.16).

sap_agent_identity_plan

Inactive

Tool of SAP MCP Server

declared in 0.9.16

Free read-only planner for SAP agent registration, profile/image updates, Metaplex/MPL Core identity linking, SNS linking, x402 pricing metadata, and post-write verification. Use this before sap_payments_register_agent or sap_payments_update_agent so agents know the exact local-signer route, metadata contract, forbidden actions, and protocol fee verification checklist. It does not touch chain and never signs. SAP MCP context: Direct synapse-sap-sdk wrapper served by this MCP. Read tools return on-chain state; write tools require signer policy, configured RPC, and the active SAP profile.

Parameters schema

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Required public display name for the SAP agent. Keep it stable enough for explorers and humans."
    },
    "agentId": {
      "type": "string",
      "description": "Optional stable lowercase agent id, for example solking. This is separate from the on-chain agent PDA."
    },
    "pricing": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "pricePerCall"
        ],
        "properties": {
          "tierId": {
            "type": "string",
            "description": "Stable tier id, for example default, read, premium, value-action, or enterprise."
          },
          "rateLimit": {
            "type": "number",
            "description": "Maximum calls per second allowed by this tier. Defaults to 60."
          },
          "tokenMint": {
            "type": "string",
            "description": "Optional SPL token mint public key. Required when tokenType is spl. For mainnet USDC use EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v."
          },
          "tokenType": {
            "enum": [
              "sol",
              "usdc",
              "spl"
            ],
            "type": "string",
            "description": "Payment token type. Use usdc for x402/pay.sh agent commerce. Use spl only with tokenMint."
          },
          "burstLimit": {
            "type": "number",
            "description": "Optional short-window burst allowance for this tier."
          },
          "volumeCurve": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "afterCalls",
                "pricePerCall"
              ],
              "properties": {
                "afterCalls": {
                  "type": "number",
                  "description": "Call count threshold where this price starts."
                },
                "pricePerCall": {
                  "type": "string",
                  "description": "Discounted price per call in the smallest unit of tokenType."
                }
              },
              "description": "Volume Curve parameter for Plan SAP Agent Identity.",
              "additionalProperties": false
            },
            "description": "Optional volume discounts. Each item lowers pricePerCall after a call threshold."
          },
          "pricePerCall": {
            "type": "string",
            "description": "Price per call in the smallest unit of tokenType: lamports for sol, micro-USDC for usdc, or base units for spl."
          },
          "tokenDecimals": {
            "type": "number",
            "description": "Decimals for the payment token. Defaults to 6 for usdc and 9 for sol when omitted."
          },
          "settlementMode": {
            "enum": [
              "instant",
              "escrow",
              "batched",
              "x402"
            ],
            "type": "string",
            "description": "Settlement strategy. Use x402 for HTTP 402/pay.sh flows, escrow for prepaid SAP usage ledgers, instant for direct pay-per-call, and batched for periodic settlement."
          },
          "maxPricePerCall": {
            "type": "string",
            "description": "Optional ceiling price per call in the smallest unit of tokenType."
          },
          "minPricePerCall": {
            "type": "string",
            "description": "Optional floor price per call in the smallest unit of tokenType."
          },
          "batchIntervalSec": {
            "type": "number",
            "description": "Optional settlement batch interval in seconds when settlementMode is batched."
          },
          "minEscrowDeposit": {
            "type": "string",
            "description": "Optional minimum escrow deposit in the smallest unit of tokenType."
          },
          "maxCallsPerSession": {
            "type": "number",
            "description": "Maximum calls allowed per session for this tier. Defaults to 1000."
          }
        },
        "description": "Pricing parameter for Plan SAP Agent Identity.",
        "additionalProperties": false
      },
      "description": "Optional pricing tiers advertised by the agent. Use tokenType usdc + settlementMode x402 for pay.sh/x402 agent commerce."
    },
    "agentUri": {
      "type": "string",
      "description": "Optional public HTTPS/IPFS/Arweave/Kommodo URI for the agent profile metadata or profile page. Never use local desktop file paths."
    },
    "imageUrl": {
      "type": "string",
      "description": "Optional public image URL. This must be HTTPS, IPFS, Arweave, or another public URI; desktop file paths are not valid."
    },
    "protocols": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "Protocols parameter for Plan SAP Agent Identity."
      },
      "description": "Required protocol tags the agent supports, for example sap, mcp, jupiter, pyth, metaplex, sns, x402, payments."
    },
    "snsDomain": {
      "type": "string",
      "description": "Optional .sol domain to link after ownership or registration is verified."
    },
    "description": {
      "type": "string",
      "description": "Required public description of what the agent does, which protocols it can use, and its safety/trust boundaries."
    },
    "metadataUri": {
      "type": "string",
      "description": "Alias for agentUri. Prefer a public JSON metadata document containing name, description, image, external_url, attributes, sap, metaplex, sns, and x402 fields."
    },
    "ownerWallet": {
      "type": "string",
      "description": "Optional expected SAP owner wallet. Use this for verification planning only; signing still comes from the active local SAP profile."
    },
    "capabilities": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "type": "string",
            "description": "Capability id shorthand, for example jupiter:swap, pyth:price, metaplex:identity, sns:identity, or risk:management."
          },
          {
            "type": "object",
            "required": [
              "id"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "Required stable capability id. Use protocol:action naming, for example jupiter:swap, pyth:price, metaplex:identity, sns:identity, x402:payments, or risk:management."
              },
              "version": {
                "type": "string",
                "description": "Optional capability version string. Use semver when the capability maps to an API contract."
              },
              "protocolId": {
                "type": "string",
                "description": "Optional protocol namespace backing this capability, for example sap, mcp, jupiter, pyth, metaplex, sns, x402, or custom."
              },
              "description": {
                "type": "string",
                "description": "Optional human-readable capability description for agents and explorers."
              }
            },
            "additionalProperties": false
          }
        ],
        "description": "Capabilities parameter for Plan SAP Agent Identity."
      },
      "description": "Required capability list. Prefer object form for production; strings are accepted as shorthand."
    },
    "x402Endpoint": {
      "type": "string",
      "description": "Optional public x402 discovery/payment endpoint, usually https://host/.well-known/x402 for external agent services."
    },
    "metaplexAsset": {
      "type": "string",
      "description": "Optional Metaplex NFT or MPL Core asset/collection address to reference from public agent metadata."
    },
    "intendedAction": {
      "enum": [
        "register",
        "update",
        "link-metaplex",
        "link-sns",
        "full-identity"
      ],
      "type": "string",
      "description": "Agent identity lifecycle step to plan. Use register for a new SAP agent, update for profile/image/capability changes, link-metaplex for NFT/MPL Core identity, link-sns for .sol identity, or full-identity for the recommended end-to-end flow."
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.50.

Parent server

SAP MCP Server

https://github.com/OOBE-PROTOCOL/sap-mcp

2/7 registries
View full server →
sap_agent_identity_plan — SAP MCP Server — PRSM MCP