aws-mcp-lambda-server

aws-mcp-lambda-server

An MCP server that runs on AWS Lambda, enabling MCP clients like Claude Desktop to invoke tools such as weather forecasts via serverless infrastructure with OAuth authentication.

Category
Visit Server

README

AWS MCP Lambda Server

AWS Lambda上で動作するModel Context Protocol (MCP) サーバーの実装です。このプロジェクトは、MCPサーバーをAWSのサーバーレス環境で実行し、Claude DesktopなどのMCPクライアントと連携できるようにします。

プロジェクト構成

aws-mcp-lambda-server/
├── platform/                    # AWS CDKインフラストラクチャとLambda関数
│   ├── bin/                     # CDKアプリケーションエントリーポイント
│   ├── lib/                     # CDKスタック定義
│   ├── lambda/                  # Lambda関数のソースコード
│   │   ├── mcp-server/         # MCPサーバー実装
│   │   │   ├── tools/          # MCPツール(WeatherTool等)
│   │   │   ├── index.ts        # Lambda関数エントリーポイント
│   │   │   ├── mcp-server.ts   # MCPサーバー設定
│   │   │   └── server.ts       # 開発用サーバー
│   │   ├── authorize.ts        # OAuth認証処理
│   │   ├── token.ts           # トークン管理
│   │   ├── revoke.ts          # トークン無効化
│   │   ├── clients.ts         # クライアント管理
│   │   └── utils.ts           # ユーティリティ関数
│   └── package.json
├── example/                     # サンプルクライアントアプリケーション
│   └── client/                 # Next.jsベースのWebクライアント
│       ├── src/                # クライアントソースコード
│       └── package.json
├── .github/workflows/          # GitHub Actions CI/CD設定
│   ├── ci.yml                 # ビルド・テスト
│   ├── deploy.yml             # AWS デプロイ
│   ├── codeql-analysis.yml    # セキュリティ分析
│   └── auto-merge.yml         # 自動マージ
└── package.json               # ルートパッケージ設定

主な機能

MCPサーバー機能

  • 天気予報ツール: 指定した都市の天気情報を取得
  • HTTP API: Hono.jsベースのRESTful API
  • 認証: AWS Cognito OAuth 2.0認証
  • サーバーレス: AWS Lambda上で動作

インフラストラクチャ

  • AWS CDK: Infrastructure as Code
  • AWS Lambda: サーバーレス実行環境
  • AWS Cognito: ユーザー認証・認可
  • AWS DynamoDB: データストレージ
  • AWS API Gateway: HTTPエンドポイント

開発・運用

  • TypeScript: 型安全な開発
  • ESLint: コード品質管理
  • Vitest: テストフレームワーク
  • GitHub Actions: CI/CD パイプライン

前提条件

  • Node.js 22.x
  • pnpm 10.14.0+
  • AWS CLI設定済み
  • AWS CDK CLI

セットアップ

1. リポジトリのクローン

git clone https://github.com/poad/aws-mcp-lambda-server.git
cd aws-mcp-lambda-server

2. 依存関係のインストール

pnpm install

3. プロジェクトのビルド

pnpm run build

デプロイ

AWS環境へのデプロイ

cd platform
npx cdk deploy --all

設定オプション

CDKコンテキストで以下の設定が可能です:

# プロジェクト名の設定
npx cdk deploy -c project-name=my-mcp-server

# 認証の有効化
npx cdk deploy -c use-auth=true

# ドメインの設定
npx cdk deploy -c domain=my-domain

開発

ローカル開発サーバーの起動

cd platform
pnpm run dev

テストの実行

pnpm run test

リンティング

pnpm run lint
pnpm run lint-fix  # 自動修正

MCPツールの追加

新しいMCPツールを追加するには:

  1. platform/lambda/mcp-server/tools/ に新しいツールファイルを作成
  2. platform/lambda/mcp-server/mcp-server.ts でツールを登録

例:

// tools/MyTool.ts
interface MyToolInput {
  message: string;
}

async function handler(args: MyToolInput): Promise<{
  content: { type: 'text', text: string }[]
}> {
  return {
    content: [
      {
        type: 'text',
        text: `処理結果: ${args.message}`,
      },
    ],
  };
}

export default handler;
// mcp-server.ts
import myTool from './tools/MyTool.js';

server.tool(
  'my_tool',
  'カスタムツールの説明',
  { message: z.string().describe('メッセージ') },
  myTool,
);

Claude Desktopとの連携

設定ファイルの場所

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json

設定例

{
  "mcpServers": {
    "aws-mcp-lambda-server": {
      "command": "node",
      "args": ["/path/to/aws-mcp-lambda-server/platform/lambda/mcp-server/dist/index.js"]
    }
  }
}

サンプルクライアント

example/client/ にNext.jsベースのWebクライアントが含まれています。

クライアントの起動

cd example/client
pnpm install
pnpm run dev

認証設定

AWS Cognitoを使用したOAuth 2.0認証をサポートしています。

認証フロー

  1. クライアントがCognitoの認証エンドポイントにリダイレクト
  2. ユーザーがログイン
  3. 認証コードを取得してアクセストークンと交換
  4. MCPサーバーAPIへのアクセス時にトークンを使用

CI/CD

GitHub Actionsを使用した自動化:

  • CI: プルリクエスト時の自動ビルド・テスト
  • CD: mainブランチへのマージ時の自動デプロイ
  • セキュリティ: CodeQL分析
  • 依存関係: Dependabot自動更新

ライセンス

MIT License

作者

Kenji Saito

コントリビューション

  1. このリポジトリをフォーク
  2. フィーチャーブランチを作成 (git checkout -b feature/amazing-feature)
  3. 変更をコミット (git commit -m 'Add some amazing feature')
  4. ブランチにプッシュ (git push origin feature/amazing-feature)
  5. プルリクエストを作成

参考資料

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured