AWS Bedrock AgentCore MCP Server
AIstdio
Official AWS Labs operational MCP server for Amazon Bedrock AgentCore. It exposes tools for runtimes, memory, identity, gateways, policy, managed browser sessions, code interpreter sessions, and AgentCore documentation. Some calls create billable resources or mutate infrastructure, so clients should use scoped IAM credentials and keep only the required primitive groups enabled.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"aws-bedrock-agentcore": {
"command": "uvx",
"args": [
"awslabs.amazon-bedrock-agentcore-mcp-server@latest"
],
"env": {
"AWS_PROFILE": "<YOUR_AWS_PROFILE>",
"AWS_REGION": "<YOUR_AWS_REGION>",
"AGENTCORE_ENABLE_TOOLS": "<YOUR_AGENTCORE_ENABLE_TOOLS>",
"AGENTCORE_DISABLE_TOOLS": "<YOUR_AGENTCORE_DISABLE_TOOLS>"
}
}
}
}Tools (4)
create_agent_runtime
Create and configure an AgentCore runtime.
{
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Runtime name"
},
"role_arn": {
"type": "string",
"description": "Execution role ARN"
}
}
}memory_retrieve_records
Retrieve semantically relevant records from AgentCore Memory.
{
"type": "object",
"required": [
"memory_id",
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Semantic retrieval query"
},
"memory_id": {
"type": "string",
"description": "AgentCore Memory identifier"
}
}
}gateway_target_create
Add a Lambda, OpenAPI, Smithy, or MCP target to an AgentCore Gateway.
{
"type": "object",
"required": [
"gateway_id",
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Target name"
},
"gateway_id": {
"type": "string",
"description": "AgentCore Gateway identifier"
}
}
}search_agentcore_docs
Search official AgentCore documentation with ranked snippets.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Documentation search query"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server information
- Author
- AWS Labs (@awslabs)
- License
- Apache-2.0
- Stars
- 0
- Last updated
- September 1, 2026