A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
The simple example of remote model context protocol server built with AWS managed services.
This repository provides a sample implementation of a remote Model Context Protocol (MCP) server using only AWS managed services: API Gateway and Cognito. The goal is to leverage the advanced features of API Gateway to implement an authorization-enabled MCP server without requiring any additional compute resources (such as Lambda, EC2, or containers) beyond the MCP tooling itself.
[Client] --(HTTPS)--> [API Gateway] --(Authorization)--> [Cognito User Pool]
|
v
[Cognito Authorizer]
|
v
[Lambda] (MCP tooling)
Clone this repository:
git clone https://github.com/manaty226/remote-mcp-based-on-aws-managed-services.git
cd remote-mcp-based-on-aws-managed-services
Initialize and apply the Terraform configuration:
cd infra
terraform init
terraform apply
This will provision the API Gateway, Cognito User Pool, and related resources.
After deployment, note the output values for the API endpoint and Cognito User Pool details.
To verify operation with MCP Inspector:
npx @modelcontextprotocol/inspector
Streamable HTTP transport and enter https://<YOUR API GATEWAY HOST>/mcp as the URLTo verify operation with VSCode:
.vscode/mcp.json file{
"servers": {
"get-uuid": {
"url": "https://<YOUR API GATEWAY HOST>/mcp/get-uuid"
}
}
}
infra/ - Terraform scripts for provisioning AWS resourcesmcp-server/ - (Optional) Sample Lambda or Dockerfile for extension (not required for core functionality)README.md - This documentationSee LICENSE for details.
MCP server integration for DaVinci Resolve Studio
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba