Skip to content

Commit f264f43

Browse files
committed
chore: publish to MCP registry
1 parent 74fa209 commit f264f43

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/publish-to-npm-on-tag.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,13 @@ jobs:
3838
- name: Publish
3939
run: |
4040
npm publish --provenance --access public
41+
42+
- name: Install MCP Publisher
43+
run: |
44+
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
45+
46+
- name: Login to MCP Registry
47+
run: ./mcp-publisher login github-oidc
48+
49+
- name: Publish to MCP Registry
50+
run: ./mcp-publisher publish

server.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3+
"name": "io.github.ChromeDevTools/chrome-devtools-mcp",
4+
"description": "MCP server for Chrome DevTools",
5+
"status": "active",
6+
"repository": {
7+
"url": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
8+
"source": "github"
9+
},
10+
"version": "0.2.1",
11+
"packages": [
12+
{
13+
"registry_type": "npm",
14+
"registry_base_url": "https://registry.npmjs.org",
15+
"identifier": "chrome-devtools-mcp",
16+
"version": "0.2.1",
17+
"transport": {
18+
"type": "stdio"
19+
},
20+
"environment_variables": []
21+
}
22+
]
23+
}

0 commit comments

Comments
 (0)