my-mcp-server-streamable

danny-yamamoto/my-mcp-server-streamable

3.2

If you are the rightful owner of my-mcp-server-streamable and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Streamable MCP Server is designed to handle MCP requests efficiently, providing a streamlined interface for specific operations.

Tools
  1. dice

    A tool that returns the result of a dice roll, with customizable number of sides.

my-mcp-server-streamable

Streamable MCP Server

API エンドポイント

メソッドエンドポイント説明
POST/mcpMCP リクエストを処理
GET/mcp405 Method Not Allowed を返す
DELETE/mcp405 Method Not Allowed を返す

提供ツール

  • dice: サイコロを振った結果を返すツール
    • パラメータ: sides (数値, デフォルト: 10) - サイコロの面の数
export AWS_REGION=ap-northeast-1
export aws_account_id=123456789012
export REPO_NAME=kbp/mcpserver
export IMAGE_TAG=v0.0.2
docker build -t ${REPO_NAME}:${IMAGE_TAG} .

aws ecr create-repository --repository-name ${REPO_NAME} --region ${AWS_REGION}

aws ecr get-login-password --region ${AWS_REGION} | docker login --username AWS --password-stdin ${aws_account_id}.dkr.ecr.${AWS_REGION}.amazonaws.com

docker tag ${REPO_NAME}:${IMAGE_TAG} ${aws_account_id}.dkr.ecr.${AWS_REGION}.amazonaws.com/${REPO_NAME}:${IMAGE_TAG}

docker push ${aws_account_id}.dkr.ecr.${AWS_REGION}.amazonaws.com/${REPO_NAME}:${IMAGE_TAG}