Add Kiro base structure, install script, and docs (#809)

Co-authored-by: Sungmin Hong <hsungmin@amazon.com>
This commit is contained in:
Himanshu Sharma
2026-03-22 21:55:40 -07:00
committed by GitHub
parent a411da9122
commit 2c23ff54d1
6 changed files with 1953 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
{
"mcpServers": {
"bedrock-agentcore-mcp-server": {
"command": "uvx",
"args": [
"awslabs.amazon-bedrock-agentcore-mcp-server@latest"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false,
"autoApprove": [
"search_agentcore_docs",
"fetch_agentcore_doc",
"manage_agentcore_memory"
]
},
"strands-agents": {
"command": "uvx",
"args": [
"strands-agents-mcp-server"
],
"env": {
"FASTMCP_LOG_LEVEL": "INFO"
},
"disabled": false,
"autoApprove": [
"search_docs",
"fetch_doc"
]
},
"awslabs.cdk-mcp-server": {
"command": "uvx",
"args": [
"awslabs.cdk-mcp-server@latest"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"disabled": false
},
"react-docs": {
"command": "npx",
"args": [
"-y",
"react-docs-mcp"
]
}
}
}