-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathserver.json
More file actions
72 lines (72 loc) · 1.92 KB
/
server.json
File metadata and controls
72 lines (72 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "io.github.yuna0x0/anilist-mcp",
"description": "AniList MCP server for accessing AniList API data",
"title": "AniList",
"repository": {
"url": "https://github.com/yuna0x0/anilist-mcp",
"source": "github",
"id": "952023806"
},
"version": "1.4.0",
"icons": [
{
"src": "https://anilist.co/img/icons/icon.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "anilist-mcp",
"version": "1.4.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ANILIST_TOKEN",
"description": "AniList API token for authenticated requests",
"format": "string",
"isRequired": false,
"isSecret": true
}
]
},
{
"registryType": "oci",
"identifier": "ghcr.io/yuna0x0/anilist-mcp:1.4.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ANILIST_TOKEN",
"description": "AniList API token for authenticated requests",
"format": "string",
"isRequired": false,
"isSecret": true
}
]
},
{
"registryType": "mcpb",
"identifier": "https://github.com/yuna0x0/anilist-mcp/releases/download/v1.4.0/anilist-mcp-1.4.0.mcpb",
"fileSha256": "f77013615f02d9001b895ffb915b0a642a1a914cbb48d24f6f09e91e3f9c9fd1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ANILIST_TOKEN",
"description": "AniList API token for authenticated requests",
"format": "string",
"isRequired": false,
"isSecret": true
}
]
}
]
}