An MCP server that agents built with the Agent Builder SDK use at runtime to communicate with AWS Transform.
pip install agent-builder-agentic-mcp-aws-transformThis installs an agent-builder-agentic-mcp command.
The SDK's AgentRuntimeServer spawns this MCP server automatically:
from agent_builder_sdk.server.agent_runtime_server import AgentRuntimeServer
server = AgentRuntimeServer(
agent_factory=my_factory,
binary_location="agent-builder-agentic-mcp", # the command installed by this package
...
)
server.start()agent-builder-agentic-mcp \
--agenticApiEndpoint https://... \
--workspaceId <workspace-id> \
--jobId <job-id> \
--agentInstanceId <agent-instance-id>Run agent-builder-agentic-mcp --help for the full set of flags (transport, SSE host/port, custom auth token file, auto-refresh, etc.).
- Python 3.11+
- AWS credentials configured (standard
boto3credential chain) - A valid AWS Transform authorization token in
~/.aws/transform-credentials(or specify with--authTokenFile)