agents

Get specific Agentic agent version

Get detailed information about a specific version of an Agentic agent. Use the special version 'latest' to get the latest version.

get/v0/agents/{agentName}/versions/{version}

Path parameters

agentNamestring required

URL-encoded agent name

Example:com.example%2Fmy-agent

URL-encoded agent name

versionstring required

URL-encoded agent version

Example:1.0.0

URL-encoded agent version

Response

OK

Example response

{
  "agent": {
    "remotes": [
      {
        "headers": [
          {
            "name": "SOME_VARIABLE"
          }
        ],
        "type": "stdio",
        "url": "https://api.example.com/mcp"
      }
    ],
    "repository": {
      "id": "b94b5f7e-c7c6-d760-2c78-a5e9b8a5b8c9",
      "source": "github",
      "subfolder": "src/everything",
      "url": "https://github.com/modelcontextprotocol/servers"
    }
  }
}

Changes