Skip to content

Commit b722ad8

Browse files
V0.1.2 (#12)
* docs(readme): add logo, title, badges, links to other repos, standardize headings (#9) * fix(readme): use logo that changes color automatically depending on user's color preference scheme (#10) * docs(readme): clarify uv requirement and add Inspector documentation (#11) * Ignore local JetBrains config * docs: clarify uv requirement and improve Inspector documentation - Add clear prerequisites section for uv - Add Quick Testing section with Inspector usage - Link to Inspector documentation for troubleshooting * v0.1.2 --------- Co-authored-by: Dennis Traub <[email protected]>
1 parent 8ff1dba commit b722ad8

File tree

3 files changed

+71
-9
lines changed

3 files changed

+71
-9
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ build
88
*.egg-info
99
.mypy_cache
1010
dist
11-
venv
11+
venv
12+
.idea

README.md

Lines changed: 68 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,42 @@
1-
# Strands Agents MCP Server
2-
3-
This MCP server provides documentation about Strands Agents,
4-
so you can use your favorite AI coding assistant to vibe-code AI agents
5-
with the Strands Agents SDK.
1+
<div align="center">
2+
<div>
3+
<a href="https://strandsagents.com">
4+
<img src="https://strandsagents.com/latest/assets/logo-auto.svg" alt="Strands Agents" width="55px" height="105px">
5+
</a>
6+
</div>
7+
8+
<h1>
9+
Strands Agents MCP Server
10+
</h1>
11+
12+
<h2>
13+
A model-driven approach to building AI agents in just a few lines of code.
14+
</h2>
15+
16+
<div align="center">
17+
<a href="https://github.com/strands-agents/mcp-server/graphs/commit-activity"><img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/m/strands-agents/mcp-server"/></a>
18+
<a href="https://github.com/strands-agents/mcp-server/issues"><img alt="GitHub open issues" src="https://img.shields.io/github/issues/strands-agents/mcp-server"/></a>
19+
<a href="https://github.com/strands-agents/mcp-server/pulls"><img alt="GitHub open pull requests" src="https://img.shields.io/github/issues-pr/strands-agents/mcp-server"/></a>
20+
<a href="https://github.com/strands-agents/mcp-server/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/strands-agents/mcp-server"/></a>
21+
<a href="https://pypi.org/project/strands-agents-mcp-server/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/strands-agents-mcp-server"/></a>
22+
<a href="https://python.org"><img alt="Python versions" src="https://img.shields.io/pypi/pyversions/strands-agents-mcp-server"/></a>
23+
</div>
24+
25+
<p>
26+
<a href="https://strandsagents.com/">Documentation</a>
27+
◆ <a href="https://github.com/strands-agents/samples">Samples</a>
28+
◆ <a href="https://github.com/strands-agents/sdk-python">Python SDK</a>
29+
◆ <a href="https://github.com/strands-agents/tools">Tools</a>
30+
◆ <a href="https://github.com/strands-agents/agent-builder">Agent Builder</a>
31+
◆ <a href="https://github.com/strands-agents/mcp-server">MCP Server</a>
32+
</p>
33+
</div>
34+
35+
This MCP server provides documentation about Strands Agents to your GenAI tools, so you can use your favorite AI coding assistant to vibe-code Strands Agents.
36+
37+
## Prerequisites
38+
39+
The usage methods below require [uv](https://github.com/astral-sh/uv) to be installed on your system. You can install it by following the [official installation instructions](https://github.com/astral-sh/uv#installation).
640

741
## Installation
842

@@ -68,6 +102,18 @@ In `~/.cursor/mcp.json`:
68102
}
69103
```
70104

105+
## Quick Testing
106+
107+
You can quickly test the MCP server using the MCP Inspector:
108+
109+
```bash
110+
npx @modelcontextprotocol/inspector uvx strands-agents-mcp-server
111+
```
112+
113+
Note: This requires [npx](https://docs.npmjs.com/cli/v11/commands/npx) to be installed on your system. It comes bundled with [Node.js](https://nodejs.org/).
114+
115+
The Inspector is also useful for troubleshooting MCP server issues as it provides detailed connection and protocol information. For an in-depth guide, have a look at the [MCP Inspector documentation](https://modelcontextprotocol.io/docs/tools/inspector).
116+
71117
## Server development
72118

73119
```bash
@@ -80,10 +126,25 @@ pip3 install -e .
80126
npx @modelcontextprotocol/inspector python -m strands_mcp_server
81127
```
82128

129+
## Contributing ❤️
130+
131+
We welcome contributions! See our [Contributing Guide](CONTRIBUTING.md) for details on:
132+
- Reporting bugs & features
133+
- Development setup
134+
- Contributing via Pull Requests
135+
- Code of Conduct
136+
- Reporting of security issues
137+
138+
## License
139+
140+
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
141+
83142
## Security
84143

85144
See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
86145

87-
## License
146+
## ⚠️ Preview Status
88147

89-
This project is licensed under the Apache-2.0 License.
148+
Strands Agents is currently in public preview. During this period:
149+
- APIs may change as we refine the SDK
150+
- We welcome feedback and contributions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "strands-agents-mcp-server"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A Model Context Protocol server that provides knowledge about building AI agents with Strands Agents"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)