A

AWS Bedrock

Call Amazon Bedrock foundation models and knowledge bases.

·No reviews yet
Repo
Share:

About

Auto-generated

AWS Bedrock is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about AWS Bedrock.

What is the AWS Bedrock MCP server?
The AWS Bedrock MCP server allows you to interact with Amazon Bedrock foundation models and knowledge bases. It acts as an intermediary, translating requests into the appropriate AWS Bedrock API calls.
How do I configure the AWS Bedrock MCP in a client like Claude Desktop?
To configure AWS Bedrock in a client like Claude Desktop, you typically add a new server connection. You will need the server's transport type, which is stdio for this MCP, and your API key for authentication.
Are credentials required to use the AWS Bedrock MCP?
Yes, the AWS Bedrock MCP requires an API key for authentication. This API key is used to authorize your requests to the underlying Amazon Bedrock services.
What capabilities does the AWS Bedrock MCP offer?
This MCP enables calling Amazon Bedrock foundation models and accessing knowledge bases. It facilitates integration with AWS AI services for various applications.
What is the cost associated with using the AWS Bedrock MCP?
The AWS Bedrock MCP itself is an open-source server. The cost depends on your usage of the underlying Amazon Bedrock services, which are billed separately by AWS.
What is a common prerequisite for running the AWS Bedrock MCP?
A common prerequisite for running the AWS Bedrock MCP is having a configured AWS environment with the necessary permissions to access Amazon Bedrock. You will also need a valid API key.

Install AWS Bedrock

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "aws-bedrock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-bedrock"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "aws-bedrock": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-bedrock"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "aws-bedrock": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aws-bedrock"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.