Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/assets/__tests__/__snapshots__/assets.snapshot.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ description = "MCP Server demonstrating HTTP tool patterns"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli] >= 1.2.0",
"mcp[cli] ~= 1.24.0",
"httpx >= 0.27.0",
"opentelemetry-distro",
"opentelemetry-exporter-otlp",
Expand Down Expand Up @@ -4780,8 +4780,8 @@ dependencies = [
"aws-opentelemetry-distro",
"opentelemetry-instrumentation-langchain >= 0.59.0",
"langgraph >= 1.0.2",
"mcp >= 1.19.0",
"langchain-mcp-adapters >= 0.2.0",
"mcp ~= 1.24.0",
"langchain-mcp-adapters >= 0.3.1",
"langchain >= 1.0.3",
"bedrock-agentcore >= 1.8.0",
"botocore[crt] >= 1.35.0",
Expand Down Expand Up @@ -6437,7 +6437,7 @@ dependencies = [
"bedrock-agentcore >= 1.9.1",
"botocore[crt] >= 1.35.0",
{{#if (eq modelProvider "Gemini")}}"google-genai >= 1.0.0",
{{/if}}"mcp >= 1.19.0",
{{/if}}"mcp ~= 1.24.0",
{{#if (eq modelProvider "OpenAI")}}"openai >= 1.0.0",
{{/if}}{{#if (eq modelProvider "LiteLLM")}}"litellm >= 1.0.0",
{{/if}}{{#if bedrockMantle}}"openai >= 1.0.0",
Expand Down Expand Up @@ -7190,7 +7190,7 @@ description = "AgentCore MCP Server"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp >= 1.19.0",
"mcp ~= 1.24.0",
]

[tool.hatch.build.targets.wheel]
Expand Down
2 changes: 1 addition & 1 deletion src/assets/mcp/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "MCP Server demonstrating HTTP tool patterns"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli] >= 1.2.0",
"mcp[cli] ~= 1.24.0",
"httpx >= 0.27.0",
"opentelemetry-distro",
"opentelemetry-exporter-otlp",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies = [
"aws-opentelemetry-distro",
"opentelemetry-instrumentation-langchain >= 0.59.0",
"langgraph >= 1.0.2",
"mcp >= 1.19.0",
"langchain-mcp-adapters >= 0.2.0",
"mcp ~= 1.24.0",
"langchain-mcp-adapters >= 0.3.1",
"langchain >= 1.0.3",
"bedrock-agentcore >= 1.8.0",
"botocore[crt] >= 1.35.0",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/python/http/strands/base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
"bedrock-agentcore >= 1.9.1",
"botocore[crt] >= 1.35.0",
{{#if (eq modelProvider "Gemini")}}"google-genai >= 1.0.0",
{{/if}}"mcp >= 1.19.0",
{{/if}}"mcp ~= 1.24.0",
{{#if (eq modelProvider "OpenAI")}}"openai >= 1.0.0",
{{/if}}{{#if (eq modelProvider "LiteLLM")}}"litellm >= 1.0.0",
{{/if}}{{#if bedrockMantle}}"openai >= 1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/python/mcp/standalone/base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "AgentCore MCP Server"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp >= 1.19.0",
"mcp ~= 1.24.0",
]

[tool.hatch.build.targets.wheel]
Expand Down
4 changes: 2 additions & 2 deletions src/cli/templates/__tests__/multi-gateway-collision.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ describe('Multi-gateway tool-name collision fix', () => {
hasGateway: false,
modelProvider: 'Bedrock',
});
expect(withGw).toContain('langchain-mcp-adapters >= 0.2.0');
expect(noGw).toContain('langchain-mcp-adapters >= 0.2.0');
expect(withGw).toContain('langchain-mcp-adapters >= 0.3.1');
expect(noGw).toContain('langchain-mcp-adapters >= 0.3.1');
expect(noGw).not.toContain('0.1.11');
});
});
Expand Down
Loading