Skip to content
Closed
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
15 changes: 15 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"schema_version": "1.0",
"name": "mapbox-mcp-server",
"version": "1.0.0",
"registry": { "visibility": "public" },
"manifest": {
"homepage": "https://github.com/mapbox/mcp-server",
"repository": "https://github.com/mapbox/mcp-server",
"license": "BSD-2-Clause"
},
"tools": [
{ "id": "mapbox_geocode", "name": "geocode", "description": "Geocode addresses to coordinates" },
{ "id": "mapbox_directions", "name": "directions", "description": "Get driving/walking directions" }
]
}
21 changes: 21 additions & 0 deletions .github/workflows/codex-plugin-scanner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Codex Plugin Scanner

on:
push:
branches: [main]
paths:
- '.codex-plugin/**'
- '.mcp.json'
pull_request:
paths:
- '.codex-plugin/**'
- '.mcp.json'

jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hashgraph-online/codex-plugin-scanner@v1
with:
mode: validate
8 changes: 8 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"mapbox-mcp-server": {
"command": "npx",
"args": ["-y", "@mapbox/mcp-server"]
}
}
}