Skip to content

Commit f3b1daf

Browse files
authored
Fix package READMEs: correct install name, binary refs, and wording (#39)
- sdk: Fix pip install name (agent-builder-sdk → agent-builder-sdk-aws-transform) - sdk: Fix binary_location to reference agentic-mcp, not dev mcp-server - agentic-mcp-server: Remove "platform" wording - mcp-server: Make client-agnostic (works with any MCP client, not just Kiro)
1 parent 8cf388d commit f3b1daf

3 files changed

Lines changed: 15 additions & 14 deletions

File tree

packages/agentic-mcp-server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Agent Builder Agentic MCP Server
22

3-
An [MCP](https://modelcontextprotocol.io/) server that agents built with the [Agent Builder SDK](https://pypi.org/project/agent-builder-sdk-aws-transform/) use at runtime to talk to the [AWS Transform](https://aws.amazon.com/transform/) platform.
3+
An [MCP](https://modelcontextprotocol.io/) server that agents built with the [Agent Builder SDK](https://pypi.org/project/agent-builder-sdk-aws-transform/) use at runtime to communicate with [AWS Transform](https://aws.amazon.com/transform/).
44

55
## Installation
66

packages/mcp-server/README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# Agent Builder MCP Server
2-
# Agent Builder MCP Server
3-
4-
An [MCP](https://modelcontextprotocol.io/) server that gives [Kiro](https://kiro.dev/) the tools and knowledge it needs to build, deploy, and manage agents on [AWS Transform](https://aws.amazon.com/transform/).
52

6-
With this server configured, Kiro gains first-class help for AWS Transform agent development: searching documentation, scaffolding agent code, deploying to AWS, and managing runtime operations.
3+
An [MCP](https://modelcontextprotocol.io/) server that provides tools and knowledge for building, deploying, and managing agents on [AWS Transform](https://aws.amazon.com/transform/).
74

8-
Pair it with the [**AWS Transform Agent Builder Kiro Power**](https://kiro.dev/powers/) to unlock the full end-to-end experience — the Power provides curated steering rules and workflows that guide Kiro through the entire agent-building process on top of this server's tools.
5+
This server works with any MCP-compatible client — [Kiro](https://kiro.dev/), Claude Code, Cursor, Windsurf, or any other IDE/tool that supports the Model Context Protocol.
96

107
## Installation
118

@@ -17,7 +14,13 @@ This installs an `agent-builder-mcp` command that speaks MCP over stdio.
1714

1815
## Quick start
1916

20-
Add the server to Kiro's MCP configuration:
17+
### With Kiro (recommended)
18+
19+
Install the [**AWS Transform Agent Toolkit**](https://kiro.dev/powers/#aws-transform-agent-toolkit) Kiro Power for the full guided experience — it configures this MCP server automatically and adds steering rules that guide Kiro through the entire agent-building process.
20+
21+
### With any MCP client
22+
23+
Add the server to your MCP configuration:
2124

2225
```json
2326
{
@@ -30,7 +33,7 @@ Add the server to Kiro's MCP configuration:
3033
}
3134
```
3235

33-
Restart Kiro. It will now have access to the agent-builder tool set.
36+
Restart your IDE/tool. It will now have access to the agent-builder tool set.
3437

3538
## What it provides
3639

@@ -43,8 +46,6 @@ Tools are grouped into six categories:
4346
- **Validation** — check agent manifests and configurations before deployment.
4447
- **CloudWatch** — query agent logs and metrics.
4548

46-
Ask Kiro "what agent-builder tools do you have?" and it will list the exact set available in your installed version.
47-
4849
## Requirements
4950

5051
- Python 3.11+

packages/sdk/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The SDK wraps the common concerns — HTTP server, request routing, agent lifecy
1212
## Installation
1313

1414
```bash
15-
pip install agent-builder-sdk
15+
pip install agent-builder-sdk-aws-transform
1616
```
1717

1818
## Building an orchestrator
@@ -72,7 +72,7 @@ def main():
7272
agent_factory=agent_factory,
7373
host="0.0.0.0",
7474
port=8080,
75-
binary_location="./agent-builder-mcp",
75+
binary_location="agent-builder-agentic-mcp",
7676
storage_dir="/tmp/my_agent",
7777
checkpoint_strategy="conversation", # optional, enables checkpointing
7878
checkpoint_interval=10, # optional, enables checkpointing
@@ -132,7 +132,7 @@ def main():
132132
agent_factory=agent_factory,
133133
host="0.0.0.0",
134134
port=8080,
135-
binary_location="./agent-builder-mcp",
135+
binary_location="agent-builder-agentic-mcp",
136136
)
137137
server.start()
138138

@@ -145,7 +145,7 @@ if __name__ == "__main__":
145145

146146
- Python 3.11+
147147
- AWS credentials configured (standard `boto3` credential chain), with Bedrock access for model inference
148-
- The `agent-builder-mcp` binary on disk — see [agent-builder-mcp-aws-transform](https://pypi.org/project/agent-builder-mcp-aws-transform/)
148+
- The `agent-builder-agentic-mcp` binary on disk — see [agent-builder-agentic-mcp-aws-transform](https://pypi.org/project/agent-builder-agentic-mcp-aws-transform/)
149149

150150
## License
151151

0 commit comments

Comments
 (0)