Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1e72d21
Add server-level icons with light and dark theme support
mattpodwysocki Jan 12, 2026
c205821
Update @modelcontextprotocol/sdk to 1.25.2
mattpodwysocki Jan 12, 2026
ca757a9
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Jan 13, 2026
dc3e501
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Jan 26, 2026
8f325eb
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Jan 27, 2026
5c160cc
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Jan 29, 2026
04a1930
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Feb 9, 2026
79ef57e
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Feb 16, 2026
9bde92c
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Feb 23, 2026
08f374d
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Feb 26, 2026
efd96fa
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Mar 4, 2026
2aba9b7
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Mar 6, 2026
cd1d797
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Apr 1, 2026
a9c8261
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Apr 1, 2026
188f51a
chore: add CVE-2026-4926 entry to CHANGELOG
mattpodwysocki Apr 1, 2026
a9653e2
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Apr 2, 2026
814f635
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Apr 13, 2026
42acbeb
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Apr 13, 2026
80a5750
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Apr 14, 2026
8490ef9
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki May 27, 2026
6ff4e85
Merge branch 'main' of github.com:mapbox/mcp-server
mattpodwysocki Jun 8, 2026
9aa4064
chore: enforce LF line endings via .gitattributes and Prettier config
mattpodwysocki Jun 8, 2026
1be2823
chore: move CHANGELOG entry to Dependencies section
mattpodwysocki Jun 10, 2026
74f4000
chore: merge main and resolve CHANGELOG conflict
mattpodwysocki Jun 10, 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
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- **Temporary resources** (`mapbox://temp/...`) are now scoped to the account that created them: a read by a different account returns the standard not-found response. Token resolution mirrors the tools (request auth, then the env token for stdio/single-user), so local reads are unaffected. Adds regression tests.

### Dependencies

- **Normalize line endings to LF**: Added `.gitattributes` (`* text=auto eol=lf`) and `"endOfLine": "lf"` to the Prettier config so Windows contributors no longer hit CRLF/Prettier failures when running `npm run lint`.

## 0.12.2-dev - 2026-06-10

### Security
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
"trailingComma": "none",
"endOfLine": "lf"
},
"engines": {
"node": ">=22"
Expand Down
Loading