Skip to content
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1221a96
feat: add HTTP Streamable protocol support for MCP server
bgelatti Nov 4, 2025
da3aeaf
refactor: convert index.ts to CLI router for transport selection
bgelatti Nov 4, 2025
bda3168
fix: make TAGOIO_TOKEN optional for HTTP mode
bgelatti Nov 4, 2025
b94ff8c
chore: update dependencies for HTTP Streamable protocol
bgelatti Nov 4, 2025
952d517
docs: add comprehensive HTTP protocol documentation
bgelatti Nov 4, 2025
d324232
feat: add configurable session expiration to HTTP MCP server
bgelatti Nov 5, 2025
98d1ee2
chore: packages and formatting update
vitorfdl Feb 6, 2026
7752621
fix: make TAGOIO_TOKEN optional for HTTP mode support
bgelatti Feb 10, 2026
7f35314
test: add HTTP server integration tests and npm scripts
bgelatti Feb 10, 2026
e20dcbb
docs: fix incorrect tool names and malformed curl examples in HTTP RE…
bgelatti Feb 11, 2026
9374657
test: add stdio server integration tests and extract shared JSON-RPC …
bgelatti Feb 11, 2026
72ae847
fix: downgrade vitest to 3.x and zod to 3.x for CommonJS compatibility
bgelatti Feb 11, 2026
ee5ce28
fix: update CI Node.js version from 18.x to 20.x
bgelatti Feb 11, 2026
dd46def
fix: update CI Node.js version from 20.x to 22.x
bgelatti Feb 11, 2026
47a6f9e
feat: added token and lambda support to http stream
vitorfdl Apr 1, 2026
c011f3c
feat: stateless HTTP transport with per-request region and CORS support
bgelatti Apr 6, 2026
692360d
docs: add AWS Lambda remote HTTP configuration to README
bgelatti Apr 6, 2026
9e1d099
fix: improve HTTP transport error handling, security, and test coverage
vitorfdl Apr 14, 2026
fb96412
refactor: standardize token extraction and improve documentation
vitorfdl Apr 14, 2026
3f076b2
chore: update CI Node.js version from 22.x to 24.x in workflows
vitorfdl Apr 14, 2026
0605b62
chore: update dependencies and Node.js version in package files
vitorfdl Apr 14, 2026
5d16353
fix: migrate Vitest from SWC to Oxc transformer and fix mock constructor
vitorfdl Apr 14, 2026
a8ba4fd
chore: update Node.js version requirement and clean up package files
vitorfdl Apr 14, 2026
b5d4e5d
chore: update version to 3.0.0 and adjust references in configuration…
vitorfdl Apr 14, 2026
a9cecbf
feat: add logger utility with LOG_LEVEL support and SILENT mode
vitorfdl Apr 14, 2026
0dbfb89
fix: use regular function in mock to support constructor invocation
vitorfdl Apr 14, 2026
45517e0
refactor: update server startup and shutdown logic for improved conne…
vitorfdl Apr 14, 2026
e3bb38b
chore: update installation badges in README for improved clarity and …
vitorfdl Apr 14, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
node-version: "24.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run build
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@ name: Run Unit Tests

on:
push:
pull_request:
branches: [master]

jobs:
build:
runs-on: macos-latest

strategy:
matrix:
node-version: [18.x]
node-version: [24.x]

steps:
- uses: actions/checkout@v4
Expand Down
Loading
Loading