AgentCore MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AgentCore MCP ServerList your available tools."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AgentCore MCP 2026-07-28 sample
A minimal, reproducible sample for exercising the MCP 2026-07-28 (stateless)
protocol on Amazon Bedrock AgentCore — both a Runtime-hosted MCP server and a
SigV4 probe you can point at a Gateway or a Runtime.
MCP 2026-07-28 makes the protocol stateless: no initialize handshake, no
protocol-level Mcp-Session-Id, every request self-contained. The two artifacts here
let you see that end to end.
Contents
File | What it is |
| A stateless MCP server built on the |
| Runtime dependencies ( |
| A tiny SigV4-signed MCP client for probing an AgentCore Gateway |
Tested with
mcp==2.0.0(LATEST_PROTOCOL_VERSION == "2026-07-28"),bedrock-agentcore==1.19.0,bedrock-agentcore-starter-toolkit==0.3.11, Python 3.13, inus-east-1. Pin yourmcpversion — a different major version changes the server API (see note below).
Related MCP server: Hello MCP Server
The server
server.py uses the v2 high-level API. Note that mcp v2 removed FastMCP —
the class is now MCPServer (mcp.server.mcpserver). It serves a stateless
streamable-HTTP app at 0.0.0.0:8000/mcp, which is what AgentCore Runtime expects.
Key choices:
stateless_http=True— the 2026-07-28 model and the recommended AgentCore default.enable_dns_rebinding_protection=False— the AgentCore front door forwards a non-localhostHostheader, so the v2 default host validation must be relaxed for the container.
Run locally
python -m venv .venv && . .venv/bin/activate
pip install -r requirements.txt
python server.py # serves http://0.0.0.0:8000/mcpCompare the two protocol shapes locally:
# old protocol -> SSE, no envelope
curl -s http://localhost:8000/mcp \
-H 'Content-Type: application/json' -H 'Accept: application/json,text/event-stream' \
-H 'MCP-Protocol-Version: 2025-03-26' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
# 2026-07-28 stateless -> plain JSON with resultType/cacheScope envelope
curl -s http://localhost:8000/mcp \
-H 'Content-Type: application/json' -H 'Accept: application/json,text/event-stream' \
-H 'MCP-Protocol-Version: 2026-07-28' -H 'Mcp-Method: tools/list' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{"_meta":{
"io.modelcontextprotocol/protocolVersion":"2026-07-28",
"io.modelcontextprotocol/clientInfo":{"name":"local","version":"1.0"},
"io.modelcontextprotocol/clientCapabilities":{}}}}'Deploy to AgentCore Runtime
Using the starter toolkit's direct_code_deploy (no local container build; IAM inbound
auth is the default when you omit a JWT authorizer):
pip install bedrock-agentcore-starter-toolkit
agentcore configure -e server.py -n <agent-name> --protocol MCP \
-r us-east-1 -rf requirements.txt --non-interactive
agentcore deployThere is no MCP-version flag on a Runtime — the runtime declares only
serverProtocol: MCP. Which MCP versions the server speaks is decided entirely by the
mcp SDK version in your requirements.txt.
The probe
mcp_probe.py SigV4-signs a POST (default service bedrock-agentcore) so you can hit
IAM-auth AgentCore endpoints with your own credentials — no Cognito/OAuth setup.
pip install boto3
# Point at a Gateway MCP endpoint or a Runtime /invocations URL:
URL="https://<gateway-id>.gateway.bedrock-agentcore.us-east-1.amazonaws.com/mcp"
# 2026-07-28 stateless tools/list
python mcp_probe.py --url "$URL" --proto 2026-07-28 --mcp-method tools/list --method tools/list \
--meta '{"io.modelcontextprotocol/protocolVersion":"2026-07-28","io.modelcontextprotocol/clientInfo":{"name":"probe","version":"1.0"},"io.modelcontextprotocol/clientCapabilities":{}}'
# tools/call
python mcp_probe.py --url "$URL" --proto 2026-07-28 --mcp-method tools/call --mcp-name add_numbers \
--method tools/call --name add_numbers --arguments '{"a":2,"b":40}' \
--meta '{"io.modelcontextprotocol/protocolVersion":"2026-07-28","io.modelcontextprotocol/clientInfo":{"name":"probe","version":"1.0"},"io.modelcontextprotocol/clientCapabilities":{}}'For a Runtime, use the data-plane URL with the URL-escaped runtime ARN:
https://bedrock-agentcore.us-east-1.amazonaws.com/runtimes/<URL-ESCAPED-ARN>/invocations?qualifier=DEFAULTGotchas this sample demonstrates
A stateless
2026-07-28request must carryprotocolVersion,clientInfo, andclientCapabilitiesinside_metaon every call — omit any and you get-32602. A real client SDK does this for you; hand-rolling from an abbreviated example fails.mcpv2 droppedFastMCP→ useMCPServer. (Pinmcp>=1.28,<2if you must keepFastMCP.)v2 DNS-rebinding protection blocks the non-localhost
Hostbehind AgentCore → disable it for the container.On the wire: old protocol responds via SSE with no envelope;
2026-07-28responds with plain JSON carryingresultType/cacheScope(andstructuredContent/ttlMswhere applicable).
Prerequisites
Python 3.10+ (3.13 tested)
AWS credentials in your environment with permission to deploy/invoke AgentCore
For probing: an AgentCore Gateway or Runtime configured with IAM (SigV4) inbound auth
References
License
MIT-0. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceAn MCP server that enables users to retrieve information from AWS Knowledge Bases using RAG (Retrieval-Augmented Generation) via Bedrock Agent Runtime.Last updated1187MIT
- AlicenseAqualityDmaintenanceA simple MCP server that provides a basic greeting tool and serves as a starter template for AWS Lambda deployment. Demonstrates how to build and deploy MCP servers with both local development and cloud deployment capabilities.Last updated120MIT
- Flicense-quality-maintenanceA proof-of-concept implementation that enables Amazon Bedrock AgentCore to interact with AWS Lambda functions and REST APIs through the Model Context Protocol. It provides a gateway for protocol translation and supports direct server implementation using the FastMCP framework.Last updated
- Flicense-qualityCmaintenanceA basic MCP server for deployment to Amazon Bedrock AgentCore Runtime, enabling tool integration via FastMCP with streamable HTTP transport.Last updated
Related MCP Connectors
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Cloud-hosted MCP server for durable AI memory
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mofokeng-chaka/agentcore-mcp-2026-07-28'
If you have feedback or need assistance with the MCP directory API, please join our Discord server