@pagopa/dx-mcpserver 0.0.9 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -31,13 +31,17 @@ This server can be used by any MCP-compliant client.
|
|
|
31
31
|
|
|
32
32
|
### VS Code
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
[](vscode:mcp/install?%7B%22name%22%3A%22dx%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fapi.dx.pagopa.it%2Fmcp%22%2C%22headers%22%3A%7B%22x-gh-pat%22%3A%22%24%7Binput%3Agithub_mcp_pat%7D%22%7D%7D)
|
|
35
|
+
|
|
36
|
+
After installing the MCP server in VS Code, you need to configure the GitHub
|
|
37
|
+
Personal Access Token (PAT) for authentication.
|
|
38
|
+
|
|
39
|
+
Update your MCP configuration file adding the `inputs` key to your MCP configuration as follows:
|
|
36
40
|
|
|
37
41
|
```json
|
|
38
42
|
{
|
|
39
43
|
"servers": {
|
|
40
|
-
"dx
|
|
44
|
+
"dx": {
|
|
41
45
|
"url": "https://api.dx.pagopa.it/mcp",
|
|
42
46
|
"type": "http",
|
|
43
47
|
"headers": {
|
|
@@ -56,6 +60,10 @@ The GH PAT authentication is done via a prompt, so you will be asked to enter it
|
|
|
56
60
|
}
|
|
57
61
|
```
|
|
58
62
|
|
|
63
|
+
You will be prompted to enter your GitHub PAT when you first use the server.
|
|
64
|
+
|
|
65
|
+
See [VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers) for more info.
|
|
66
|
+
|
|
59
67
|
### GitHub Copilot Coding Agent
|
|
60
68
|
|
|
61
69
|
You need to configure it in the repository settings. See [GitHub Copilot MCP docs](https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/extend-coding-agent-with-mcp) for more info.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pagopa/dx-mcpserver",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "An MCP server that
|
|
5
|
+
"description": "An MCP server that supports developers using DX tools.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/pagopa/dx.git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"fastmcp": "^3.19.1",
|
|
27
27
|
"zod": "^3.25.76",
|
|
28
28
|
"@pagopa/azure-tracing": "^0.4.10",
|
|
29
|
-
"@pagopa/dx-mcpprompts": "^0.1.
|
|
29
|
+
"@pagopa/dx-mcpprompts": "^0.1.3"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.19.1",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"scripts": {
|
|
42
42
|
"start": "tsx src/index.ts",
|
|
43
43
|
"format": "prettier --write .",
|
|
44
|
-
"format:check": "prettier --check ."
|
|
44
|
+
"format:check": "prettier --check .",
|
|
45
|
+
"version": "node ./scripts/generate-server-manifest.js"
|
|
45
46
|
}
|
|
46
47
|
}
|