Skip to main content
This guide walks you through deploying the AWS Bedrock AgentCore MCP Server on TrueFoundry and registering it with the TrueFoundry MCP Gateway. Once registered, your agents and AI coding assistants can search and fetch AWS Bedrock AgentCore documentation through a centralized, managed endpoint.

What is AWS Bedrock AgentCore MCP?

The AWS Bedrock AgentCore MCP server provides AI tools with direct access to Amazon Bedrock AgentCore documentation. It enables LLMs and coding assistants to search, retrieve, and understand AgentCore concepts — covering runtime deployment, gateway connectivity, memory management, and agent lifecycle workflows.
The AWS Bedrock AgentCore MCP server is a documentation-only tool. It does not provision AWS resources, deploy agents, or make API calls to AWS services on your behalf. Its sole purpose is to give AI assistants access to the AgentCore documentation so they can help you write code, understand concepts, and troubleshoot issues related to Amazon Bedrock AgentCore services such as Runtime, Memory, Code Interpreter, Browser, Gateway, Observability, and Identity.

Available Tools

The MCP server exposes the following tools:

Prerequisites

Before you begin, ensure you have:
  1. TrueFoundry Account: A TrueFoundry account with a configured workspace
  2. MCP Gateway Access: Follow the MCP Gateway Getting Started guide to set up your MCP Server Group

Step 1: Create the MCP Server

The server wraps the official AWS Bedrock AgentCore MCP package and exposes it over HTTP using FastMCP.
You can find the complete example code at: AWS AgentCore MCP Server Repository

Step 2: Run Locally

Your MCP server will be available at http://localhost:3000/mcp.

Step 3: Deploy on TrueFoundry

Deploy this MCP server as a service on TrueFoundry:
  1. Create a new Service in your TrueFoundry workspace.
  2. Point to the GitHub repository or use the Dockerfile above.
  3. Optionally set environment variables for AWS access:
  1. Deploy the service. Once running, your deployment will look like this:
TrueFoundry deployment dashboard showing the AWS AgentCore MCP server running with active pods

Step 4: Register in TrueFoundry MCP Gateway

Once the service is deployed, register it with the TrueFoundry MCP Gateway:
  1. Navigate to MCP Server Groups in the TrueFoundry dashboard.
  2. Select your MCP Server Group (or create one following the Getting Started guide).
  3. Click Add MCP Server and fill in the following details:
TrueFoundry MCP server registration form showing name, description, URL, and transport configuration for the AWS AgentCore MCP server
  1. Save the configuration. The MCP Gateway will connect to your server and discover the available tools.

Step 5: Verify the Integration

After registration, navigate to your MCP server in the dashboard. You should see all 5 tools discovered and available:
TrueFoundry MCP Gateway showing the AWS AgentCore MCP server with 5 connected tools including search_agentcore_docs, fetch_agentcore_doc, manage_agentcore_runtime, manage_agentcore_memory, and manage_agentcore_gateway
You can click Try on any tool to test it directly from the dashboard.

Next Steps