File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Below are sample configurations that call the server via `npx` (useful once the
5050claude mcp add dart-pub-mcp \
5151 --transport stdio \
5252 --command npx \
53- --arg dart-pub-mcp@X.Y.Z \
53+ --arg dart-pub-mcp@latest \
5454 --arg start
5555```
5656
@@ -63,7 +63,7 @@ claude mcp add dart-pub-mcp \
6363 "name" : " dart-pub-mcp" ,
6464 "type" : " stdio" ,
6565 "command" : " npx" ,
66- "args" : [" dart-pub-mcp@X.Y.Z " , " start" ]
66+ "args" : [" dart-pub-mcp@latest " , " start" ]
6767 }
6868 ]
6969}
@@ -76,7 +76,7 @@ claude mcp add dart-pub-mcp \
7676 "mcpServers" : {
7777 "dart-pub-mcp" : {
7878 "command" : " npx" ,
79- "args" : [" dart-pub-mcp@X.Y.Z " , " start" ],
79+ "args" : [" dart-pub-mcp@latest " , " start" ],
8080 "transport" : " stdio"
8181 }
8282 }
@@ -96,6 +96,9 @@ npm run build
9696# Run automated tests
9797npm test
9898
99+ # Verify publishable package contents (dry run)
100+ npm run pack:test
101+
99102# Watch mode for local iteration
100103npm run dev
101104```
Original file line number Diff line number Diff line change 1010 "dev" : " tsx watch src/server.ts" ,
1111 "start" : " tsx src/server.ts" ,
1212 "test" : " vitest run" ,
13- "typecheck" : " tsc -p tsconfig.json"
13+ "typecheck" : " tsc -p tsconfig.json" ,
14+ "pack:test" : " npm pack --dry-run"
1415 },
1516 "keywords" : [],
1617 "author" : " " ,
You can’t perform that action at this time.
0 commit comments