MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
Ingest Request TelemetryResolve Bundle
Bundler

Resolve Bundle

GET
/v1/bundler/resolve

Validate a bundle access token and return the fully resolved MCP configuration list with decrypted credentials. Consumed by the mcpbundler daemon at connection time.

Authorization

BundleAccessToken
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/v1/bundler/resolve"
{  "bundleId": "string",  "name": "string",  "mcps": [    {      "namespace": "string",      "url": "string",      "description": "string",      "pooled": false,      "authStrategy": "string",      "auth": {        "method": "string",        "token": "string",        "username": "string",        "password": "string",        "key": "string",        "header": "string"      },      "permissions": {        "allowedTools": [          "string"        ],        "allowedResources": [          "string"        ],        "allowedPrompts": [          "string"        ]      },      "capabilities": [],      "tools": []    }  ],  "router": {    "model": "string",    "llm": {      "name": "string",      "type": "openai-compatible",      "model": "string",      "endpoint": "string",      "api_key": "string",      "temperature": 0,      "max_tokens": 0,      "timeout_ms": 0    },    "rolling_window": {},    "set_context": {}  }}
Empty
Empty

Ingest Request Telemetry

Previous Page

Add MCP to Bundle

Next Page