mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* Adding Sample for Running typescript MCP server on Agentcore Runtime * Adding an mcp client and minor fixes
34 lines
942 B
JSON
34 lines
942 B
JSON
{
|
|
"name": "typescript-mcp-server-on-aws-agentcore-runtime",
|
|
"version": "1.0.0",
|
|
"description": "Typscript MCP server deployed to AWS Agentcore Runtime",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"test": "echo \"No tests specified\" && exit 0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/megandsouza03/typescript-mcp-server-on-aws-agentcore-runtime.git"
|
|
},
|
|
"keywords": [
|
|
"agentcore",
|
|
"mcp"
|
|
],
|
|
"author": "megandsouza03",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/megandsouza03/typescript-mcp-server-on-aws-agentcore-runtime/issues"
|
|
},
|
|
"homepage": "https://github.com/megandsouza03/typescript-mcp-server-on-aws-agentcore-runtime#readme",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.17.1",
|
|
"express": "^5.1.0",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.3"
|
|
}
|
|
}
|