1. Conduid
  2. Developer Tools
  3. Server
MCP server · Developer Tools

Server

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.

Unclaimed Apache-2.0 last commit 6 months ago autonomous-agentsagenticanthropicgenaiagentsdevtoolsbedrockaiagentic-ai
77Good

Scored 3 hours ago · breakdown

About Server

Server is an MCP server published by strands-agents in the Developer Tools category: 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. It has been installed 0 times through Conduid.

The repository has 259 stars and 64 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Server

Powered by Claude · Grounded in docs

I know everything about Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.2.7v0.2.7 · 11 Mar 2026What's Changed feat(mcp): add browse_doc tool with smart sectioning by @DennisTraub in https://github.com/strands-agents/mcp-server/pull/32 Full Changelog**: https://github.com/strands-agents/mcp-server/compare/v0.2.6...v0.2.7
v0.2.6v0.2.6 · 19 Feb 2026What's Changed fix: add url validation to mitigate SSRF issue by @JackYPCOnline in https://github.com/strands-agents/mcp-server/pull/29 Full Changelog**: https://github.com/strands-agents/mcp-server/compare/v0.2.4...v0.2.6
v0.2.5v0.2.5 · 21 Nov 2025What's Changed fix: add url validation to mitigate SSRF issue by @JackYPCOnline in https://github.com/strands-agents/mcp-server/pull/29 Full Changelog**: https://github.com/strands-agents/mcp-server/compare/v0.2.4...v0.2.5
v0.2.4v0.2.4 · 18 Nov 2025What's Changed chore: add Python 3.14 to pyproject.toml classifiers by @awsarron in https://github.com/strands-agents/mcp-server/pull/28 chore(docs): Add one-click install and more IDE install examples by @clareliguori in…
v0.2.3v0.2.3 · 8 Oct 2025What's Changed feat(mcp): Return all urls on empty fetch input by @mkmeral in https://github.com/strands-agents/mcp-server/pull/25 Full Changelog**: https://github.com/strands-agents/mcp-server/compare/v0.2.2...v0.2.3

README

This MCP server provides curated documentation access to your GenAI tools via llms.txt files, enabling AI coding assistants to search and retrieve relevant documentation with intelligent ranking.

Features

  • Smart Document Search: TF-IDF based search with Markdown-aware scoring that prioritizes titles, headers, and code blocks
  • Section-Based Browsing: Browse document structure via table of contents, then fetch only the section you need - more token-efficient than retrieving full pages
  • Curated Content: Indexes documentation from llms.txt files with clean, human-readable titles
  • On-Demand Fetching: Lazy-loads full document content only when needed for optimal performance
  • Snippet Generation: Provides contextual snippets with relevance scoring for quick overview
  • Real URL Support: Works with actual HTTPS URLs while maintaining backward compatibility

Prerequisites

The usage methods below require uv to be installed on your system. You can install it by following the official installation instructions.

Installation

You can use the Strands Agents MCP server with 40+ applications that support MCP servers, including Amazon Q Developer CLI, Anthropic Claude Code, Cline, and Cursor.

Get started quickly with one-click installation buttons for popular MCP clients. Click the buttons below to install servers directly in your IDE:

Install in Kiro Install in Cursor Install in VS Code

Kiro example

See the Kiro documentation for instructions on managing MCP configuration.

In ~/.kiro/settings/mcp.json:

{
  "mcpServers": {
    "strands-agents": {
      "command": "uvx",
      "args": ["strands-agents-mcp-server"],
      "env": {
        "FASTMCP_LOG_LEVEL": "INFO"
      },
      "disabled": false,
      "autoApprove": ["search_docs", "fetch_doc"]
    }
  }
}

Q Developer CLI example

See the Q Developer CLI documentation for instructions on managing MCP configuration.

In ~/.aws/amazonq/mcp.json:

{
  "mcpServers": {
    "strands-agents": {
      "command": "uvx",
      "args": ["strands-agents-mcp-server"],
      "env": {
        "FASTMCP_LOG_LEVEL": "INFO"
      },
      "disabled": false,
      "autoApprove": ["search_docs", "fetch_doc"]
    }
  }
}

Claude Code example

See the Claude Code documentation for instructions on managing MCP servers.

claude mcp add strands uvx strands-agents-mcp-server

Cline example

See the Cline documentation for instructions on managing MCP configuration.

Provide Cline with the following information:

I want to add the MCP server for Strands Agents.
Here's the GitHub link: @https://github.com/strands-agents/mcp-server
Can you add it?"

Cursor example

See the Cursor documentation for instructions on managing MCP configuration.

In ~/.cursor/mcp.json:

{
  "mcpServers": {
    "strands-agents": {
      "command": "uvx",
      "args": ["strands-agents-mcp-server"],
      "env": {
        "FASTMCP_LOG_LEVEL": "INFO"
      },
      "disabled": false,
      "autoApprove": ["search_docs", "fetch_doc"]
    }
  }
}

VS Code example

See the VS Code documentation for instructions on managing MCP configuration.

In your mcp.json file:

{
  "servers": {
    "strands-agents": {
      "command": "uvx",
      "args": ["strands-agents-mcp-server"]
    }
  }
}

Quick Testing

You can quickly test the MCP server using the MCP Inspector:

# For published package
npx @modelcontextprotocol/inspector uvx strands-agents-mcp-server

# For local development
npx @modelcontextprotocol/inspector python -m strands_mcp_server

Note: This requires npx to be installed on your system. It comes bundled with Node.js.

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.

Getting Started

  1. Install prerequisites:

  2. Configure your MCP client:

    • Choose your preferred MCP client from the installation examples above
    • Add the Strands Agents MCP server configuration to your client
  3. Test the connection:

    # For published package
    npx @modelcontextprotocol/inspector uvx strands-agents-mcp-server
    
    # For local development
    npx @modelcontextprotocol/inspector python -m strands_mcp_server
    
  4. Start using the documentation tools:

    • search_docs - Find relevant documentation with intelligent ranking
    • fetch_doc - Browse a page's structure and preamble, then read individual sections
    • The server automatically indexes curated content from llms.txt files

Server Development

git clone https://github.com/strands-agents/mcp-server.git
cd mcp-server
python3 -m venv venv
source venv/bin/activate
pip3 install -e ".[dev]"

npx @modelcontextprotocol/inspector python -m strands_mcp_server

Running Tests

# Unit tests (fast, no network access required)
pytest tests/

# Integration tests (requires network access to strandsagents.com)
pytest tests_integ/ -v

# All tests
pytest tests/ tests_integ/ -v

To skip integration tests (e.g., in CI environments without network access):

SKIP_INTEG_TESTS=1 pytest tests_integ/

Contributing ❤️

We welcome contributions! See our Contributing Guide for details on:

  • Reporting bugs & features
  • Development setup
  • Contributing via Pull Requests
  • Code of Conduct
  • Reporting of security issues

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Security

See CONTRIBUTING for more information.

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About Server

How do I install Server?

Run npx mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Server safe to use with an AI agent?

Its trust score is 77 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Server still maintained?

Yes — the latest release is v0.2.7 (11 Mar 2026), and the last commit was 6 months ago. The repository has 259 stars and 0 open issues.