One change
mcp-connector
managed-agents/mcp-connector
Nearest release: v2.1.238, published under an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
managed-agents/mcp-connector Changed · +21 / -9 lines
from line 51
agent_id=$(jq -r '.id' <<<"$agent_response") ``` - ```bash CLI - AGENT_ID=$(ant beta:agents create \ - --name "GitHub Assistant" \ - --model '{id: claude-opus-5}' \ - --mcp-server '{type: url, name: github, url: "https://api.githubcopilot.com/mcp/"}' \ - --tool '{type: agent_toolset_20260401}' \ - --tool '{type: mcp_toolset, mcp_server_name: github}' \ - --transform id --raw-output) - ``` + <MultiFileExample language="cli" label="CLI"> + ```bash CLI + AGENT_ID=$(ant beta:agents create --transform id --raw-output < github-assistant.agent.yaml) + ``` + + <File filename="github-assistant.agent.yaml"> + ```yaml + name: GitHub Assistant + model: + id: claude-opus-5 + mcp_servers: + - type: url + name: github + url: https://api.githubcopilot.com/mcp/ + tools: + - type: agent_toolset_20260401 + - type: mcp_toolset + mcp_server_name: github + ``` + </File> + </MultiFileExample> ```python Python agent = client.beta.agents.create(