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
6 changes: 3 additions & 3 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
strategy:
matrix:
os: [windows-2025, ubuntu-24.04]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
fail-fast: false
env:
PYTHON_VERSION: ${{ matrix.python-version }}
OPERATING_SYSTEM: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"httpx~=0.28.0",
"fastmcp~=2.11.0",
"fastmcp~=2.13.0",
"mcp~=1.23.0",
"pyyaml~=6.0.0",
"werkzeug>=3.1.4"
]

[project.scripts]
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
httpx~=0.28.0
fastmcp~=2.11.0
fastmcp~=2.13.0
mcp~=1.23.0
pyyaml~=6.0.0
werkzeug>=3.1.4 # not directly required, pinned by Snyk to avoid a vulnerability
4 changes: 4 additions & 0 deletions src/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import asyncio
import os

os.environ["FASTMCP_EXPERIMENTAL_ENABLE_NEW_OPENAPI_PARSER"] = "true"

from fastmcp import FastMCP
from servers import create_bandwidth_mcp
from config import load_config, get_enabled_tools, get_excluded_tools
Expand Down
2 changes: 1 addition & 1 deletion src/servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"url": "https://dev.bandwidth.com/spec/multi-factor-auth.yml"
},
"phone-number-lookup": {
"url": "https://dev.bandwidth.com/spec/phone-number-lookup.yml"
"url": "https://dev.bandwidth.com/spec/phone-number-lookup-v2.yml"
},
"insights": {"url": "https://dev.bandwidth.com/spec/insights.yml"},
"end-user-management": {
Expand Down
Loading