Skip to content

Commit e195ec1

Browse files
committed
Merge branch 'develop' v0.5.5
2 parents a9ffc25 + 4ca6bb8 commit e195ec1

149 files changed

Lines changed: 21404 additions & 3246 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ notebooks/examples/data
2626
.dsr/
2727
*tmp-dev-assets*
2828
scratch/
29+
.mcp.json
2930

3031
# Node.js / npm
3132
node_modules/
@@ -57,3 +58,6 @@ notebooks/doc-split-metrics-exp/
5758
samconfig.toml
5859
..bfg-report
5960
.git-rewrite
61+
62+
# Cline memory bank (session-specific, not project source)
63+
memory-bank/

.gitlab-ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ developer_tests:
4242
# Create virtual environment
4343
- uv venv .venv
4444
- source .venv/bin/activate
45-
# Install Node.js and npm for basedpyright
46-
- curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
47-
- apt-get install -y nodejs
48-
- npm install -g npm@11
45+
# Install pinned Node.js 22.14.0 and npm 11.1.0 for basedpyright
46+
- curl -fsSL https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.xz | tar -xJ -C /usr/local --strip-components=1
47+
- npm install -g npm@11.1.0 || { echo "npm upgrade failed"; exit 1; }
4948
- npm install -g basedpyright
5049
- uv pip install ruff
5150
# Install dependencies needed by publish.py for test imports

.mcp.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"mcpServers": {
3+
"aws-serverless": {
4+
"command": "uvx",
5+
"args": [
6+
"awslabs.aws-serverless-mcp-server@latest",
7+
"--allow-write",
8+
"--allow-sensitive-data-access"
9+
],
10+
"env": {
11+
"AWS_REGION": "us-west-2"
12+
}
13+
},
14+
"cloudwatch": {
15+
"command": "uvx",
16+
"args": [
17+
"awslabs.cloudwatch-mcp-server@latest"
18+
],
19+
"env": {
20+
"AWS_REGION": "us-west-2",
21+
"FASTMCP_LOG_LEVEL": "ERROR"
22+
}
23+
},
24+
"aws-diagram": {
25+
"command": "uvx",
26+
"args": [
27+
"awslabs.aws-diagram-mcp-server"
28+
],
29+
"env": {
30+
"FASTMCP_LOG_LEVEL": "ERROR"
31+
}
32+
},
33+
"aws-knowledge": {
34+
"command": "uvx",
35+
"args": [
36+
"fastmcp",
37+
"run",
38+
"https://knowledge-mcp.global.api.aws"
39+
]
40+
},
41+
"aws-iac": {
42+
"command": "uvx",
43+
"args": [
44+
"awslabs.aws-iac-mcp-server@latest"
45+
],
46+
"env": {
47+
"FASTMCP_LOG_LEVEL": "ERROR"
48+
}
49+
},
50+
"browsermcp": {
51+
"command": "npx",
52+
"args": [
53+
"-y",
54+
"@browsermcp/mcp@latest"
55+
]
56+
}
57+
}
58+
}

0 commit comments

Comments
 (0)