digimon-mcp 1.0.0
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 +19 -0
- package/dist/api.js +32 -0
- package/dist/index.js +4 -0
- package/dist/server.js +38 -0
- package/package.json +44 -0
- package/server.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# digimon-mcp
|
|
2
|
+
|
|
3
|
+
Digimon encyclopedia lookup from the free Digimon API. Returns name, level, and image for each partner.
|
|
4
|
+
|
|
5
|
+
This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
|
|
6
|
+
|
|
7
|
+
## Tools
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
* `search` Search Digimon by name.
|
|
11
|
+
* `level` List Digimon at a level.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install
|
|
17
|
+
npm run build
|
|
18
|
+
node dist/index.js
|
|
19
|
+
```
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const UA = "mrfentmen-digimon-mcp/1.0 (https://github.com/mrfentmen)";
|
|
2
|
+
const BASE = "https://digimon-api.vercel.app/api";
|
|
3
|
+
export class DigimonError extends Error {
|
|
4
|
+
}
|
|
5
|
+
async function get(path) {
|
|
6
|
+
const res = await fetch(`${BASE}${path}`, { headers: { "User-Agent": UA, Accept: "application/json" }, signal: AbortSignal.timeout(20000) });
|
|
7
|
+
if (!res.ok)
|
|
8
|
+
throw new DigimonError(`Digimon API returned HTTP ${res.status}`);
|
|
9
|
+
return (await res.json());
|
|
10
|
+
}
|
|
11
|
+
export async function search(args) {
|
|
12
|
+
const name = (args.name ?? "").trim();
|
|
13
|
+
if (!name)
|
|
14
|
+
throw new DigimonError("Provide a Digimon name");
|
|
15
|
+
const limit = Math.min(args.limit ?? 10, 50);
|
|
16
|
+
const data = await get(`/digimon/name/${encodeURIComponent(name)}`);
|
|
17
|
+
const list = data.slice(0, limit);
|
|
18
|
+
if (!list.length)
|
|
19
|
+
return `No Digimon found for "${name}"`;
|
|
20
|
+
return list.map((d, i) => `${i + 1}. ${d.name} | Level: ${d.level}`).join("\n");
|
|
21
|
+
}
|
|
22
|
+
export async function level(args) {
|
|
23
|
+
const level = (args.level ?? "").trim();
|
|
24
|
+
if (!level)
|
|
25
|
+
throw new DigimonError("Provide a level like Rookie or Champion");
|
|
26
|
+
const limit = Math.min(args.limit ?? 10, 50);
|
|
27
|
+
const data = await get(`/digimon/level/${encodeURIComponent(level)}`);
|
|
28
|
+
const list = data.slice(0, limit);
|
|
29
|
+
if (!list.length)
|
|
30
|
+
return `No Digimon at level "${level}"`;
|
|
31
|
+
return list.map((d, i) => `${i + 1}. ${d.name} | Level: ${d.level}`).join("\n");
|
|
32
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
2
|
+
import { createServer } from "./server.js";
|
|
3
|
+
const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
|
|
4
|
+
main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
|
package/dist/server.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import { level } from "./api.js";
|
|
4
|
+
import { search } from "./api.js";
|
|
5
|
+
const text = (value) => ({ content: [{ type: "text", text: value }] });
|
|
6
|
+
const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
|
|
7
|
+
const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
|
|
8
|
+
const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
|
|
9
|
+
export function createServer() {
|
|
10
|
+
const server = new McpServer({ name: "digimon-mcp", version: "1.0.0" });
|
|
11
|
+
server.registerTool("search", {
|
|
12
|
+
title: "Search",
|
|
13
|
+
description: "Search Digimon by name.",
|
|
14
|
+
inputSchema: z.object({ name: z.string().describe("Digimon name."), limit: z.number().describe("Maximum results.").optional() }),
|
|
15
|
+
annotations: READ_ONLY,
|
|
16
|
+
}, async (args) => {
|
|
17
|
+
try {
|
|
18
|
+
return text(await search(args));
|
|
19
|
+
}
|
|
20
|
+
catch (e) {
|
|
21
|
+
return textError(error(e));
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
server.registerTool("level", {
|
|
25
|
+
title: "Level",
|
|
26
|
+
description: "List Digimon at a level.",
|
|
27
|
+
inputSchema: z.object({ level: z.string().describe("Rookie, Champion, Ultimate, or Mega."), limit: z.number().describe("Maximum results.").optional() }),
|
|
28
|
+
annotations: READ_ONLY,
|
|
29
|
+
}, async (args) => {
|
|
30
|
+
try {
|
|
31
|
+
return text(await level(args));
|
|
32
|
+
}
|
|
33
|
+
catch (e) {
|
|
34
|
+
return textError(error(e));
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
return server;
|
|
38
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/mrfentmen/digimon-mcp.git"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"digimon-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"server.json",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -p tsconfig.json",
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"dev": "npm run build && node dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
25
|
+
"zod": "^3.23.8"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^22.0.0",
|
|
29
|
+
"typescript": "^5.6.0"
|
|
30
|
+
},
|
|
31
|
+
"name": "digimon-mcp",
|
|
32
|
+
"description": "Digimon encyclopedia lookup from the free Digimon API.",
|
|
33
|
+
"mcpName": "io.github.mrfentmen/digimon-mcp",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"mcp",
|
|
36
|
+
"digimon",
|
|
37
|
+
"anime",
|
|
38
|
+
"games",
|
|
39
|
+
"fun"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
}
|
|
44
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.mrfentmen/digimon-mcp",
|
|
4
|
+
"description": "Digimon encyclopedia lookup from the free Digimon API.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mrfentmen/digimon-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "digimon-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|