Skip to main content

Cloud MCP Endpoint

Bedrock hosts a cloud MCP server. No infrastructure to run — just point your agent at the endpoint.
https://api.bedrock.cv/mcp

Configuration

Add the Bedrock MCP server to your agent. Some platforms use OAuth (you’ll authorize via your Bedrock account), while others use an API key in a config file.
  1. Open your agent in Copilot Studio and go to Tools > Add a tool > New tool > Model Context Protocol
  2. Set “Server name” to “Bedrock” and “Server URL” to https://api.bedrock.cv/mcp
  3. Set authentication to OAuth 2.0, type “Dynamic discovery”
  4. Click “Create” and sign in to Bedrock when prompted
No API key needed. Copilot uses OAuth to connect to your Bedrock account directly.

Authentication

The MCP server supports two authentication methods:
  • OAuth 2.1 — used by Claude, Claude Cowork, ChatGPT, and Microsoft Copilot. The platform handles authentication automatically via OAuth discovery. No API key needed.
  • API keys — used by config-file-based clients (Claude Code, Cursor, VS Code). Include your key in the Authorization header as a Bearer token.
Never commit API keys to version control. Use environment variables or a secrets manager to inject the key into your configuration file.
To create an API key, go to Settings > API Keys in the Bedrock dashboard or see the API Keys guide.

Verify the Connection

Once configured, test with a simple prompt:
What sheets are in project {your_project_id}?
Your agent should call Query and return a list of sheets. If you see an authentication error, verify your API key is correct and has access to the project.
You can find your project ID in the Bedrock dashboard URL: https://bedrock.cv/projects/{project_id}.

Next Steps

Tools Reference

Explore the seven tools your agent now has access to.

Workflow Examples

See how agents chain tools to answer construction questions.