@pokemontcgapi/mcp 0.1.0 → 0.1.1
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 +7 -2
- package/dist/index.js +2 -2
- package/package.json +28 -7
package/README.md
CHANGED
|
@@ -120,8 +120,13 @@ truncated.
|
|
|
120
120
|
|
|
121
121
|
## Protocol
|
|
122
122
|
|
|
123
|
-
Built on `@modelcontextprotocol/server` v2,
|
|
124
|
-
[
|
|
123
|
+
Built on `@modelcontextprotocol/server` v2, which negotiates the
|
|
124
|
+
[2025-11-25](https://modelcontextprotocol.io/specification/2025-11-25) revision and accepts clients
|
|
125
|
+
down to `2024-10-07`. stdio transport.
|
|
126
|
+
|
|
127
|
+
The revision is the library's, not a claim of our own: `SUPPORTED_PROTOCOL_VERSIONS` in
|
|
128
|
+
`@modelcontextprotocol/server@2.0.0` tops out at `2025-11-25`, so a client that asks for anything
|
|
129
|
+
newer is answered with that. Verified against the published package, not read off a changelog.
|
|
125
130
|
|
|
126
131
|
## Also available
|
|
127
132
|
|
package/dist/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Entry stdio.
|
|
4
4
|
*
|
|
5
|
-
* `serveStdio` riceve una FABBRICA e non un'istanza: nella
|
|
6
|
-
*
|
|
5
|
+
* `serveStdio` riceve una FABBRICA e non un'istanza: nella v2 della libreria il
|
|
6
|
+
* server e' senza sessione, e l'istanza viene fissata dall'apertura della
|
|
7
7
|
* connessione. Passare un server gia' costruito e' il modo v1 di farlo, e qui
|
|
8
8
|
* non funzionerebbe.
|
|
9
9
|
*
|
package/package.json
CHANGED
|
@@ -1,19 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pokemontcgapi/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server for the Pokémon TCG API: search cards, sets, illustrators and prices from any MCP client.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"engines": {
|
|
8
|
-
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"pokemontcgapi-mcp": "dist/index.js"
|
|
12
|
+
},
|
|
9
13
|
"main": "./dist/index.js",
|
|
10
14
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"files": [
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
12
19
|
"mcpName": "com.pokemontcgapi/mcp",
|
|
13
|
-
"keywords": [
|
|
14
|
-
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"modelcontextprotocol",
|
|
23
|
+
"pokemon",
|
|
24
|
+
"pokemon-tcg",
|
|
25
|
+
"tcg",
|
|
26
|
+
"card-prices",
|
|
27
|
+
"agent",
|
|
28
|
+
"ai"
|
|
29
|
+
],
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/pokemontcgapi/mcp-server.git"
|
|
33
|
+
},
|
|
15
34
|
"homepage": "https://pokemontcgapi.com/mcp",
|
|
16
|
-
"bugs": {
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/pokemontcgapi/mcp-server/issues"
|
|
37
|
+
},
|
|
17
38
|
"scripts": {
|
|
18
39
|
"build": "tsc -p tsconfig.json",
|
|
19
40
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|