Skip to content

Commit 8e93b3c

Browse files
committed
Bump to 1.3.5 and update server.json schema
1 parent b04a20d commit 8e93b3c

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ FROM node:22-alpine AS release
2828

2929
LABEL org.opencontainers.image.title="AniList MCP"
3030
LABEL org.opencontainers.image.description="AniList MCP server for accessing AniList API data"
31-
LABEL org.opencontainers.image.version="1.3.4"
31+
LABEL org.opencontainers.image.version="1.3.5"
3232

3333
LABEL org.opencontainers.image.vendor="yuna0x0"
3434
LABEL org.opencontainers.image.authors="yuna0x0 <yuna@yuna0x0.com>"

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function parseConfig(req: Request) {
5151
function createServer({ config }: { config: z.infer<typeof ConfigSchema> }) {
5252
const server = new McpServer({
5353
name: "anilist-mcp",
54-
version: "1.3.4",
54+
version: "1.3.5",
5555
});
5656

5757
// Initialize AniList client with token from config or environment

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.1",
33
"name": "anilist-mcp",
44
"display_name": "AniList MCP",
5-
"version": "1.3.4",
5+
"version": "1.3.5",
66
"description": "AniList MCP server for accessing AniList API data",
77
"author": {
88
"name": "yuna0x0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anilist-mcp",
3-
"version": "1.3.4",
3+
"version": "1.3.5",
44
"mcpName": "io.github.yuna0x0/anilist-mcp",
55
"description": "AniList MCP server for accessing AniList API data",
66
"type": "module",

server.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
11
{
2-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
33
"name": "io.github.yuna0x0/anilist-mcp",
44
"description": "AniList MCP server for accessing AniList API data",
55
"status": "active",
66
"repository": {
77
"url": "https://github.com/yuna0x0/anilist-mcp",
88
"source": "github"
99
},
10-
"version": "1.3.4",
10+
"version": "1.3.5",
1111
"packages": [
1212
{
13-
"registry_type": "npm",
14-
"registry_base_url": "https://registry.npmjs.org",
13+
"registryType": "npm",
14+
"registryBaseUrl": "https://registry.npmjs.org",
1515
"identifier": "anilist-mcp",
16-
"version": "1.3.4",
16+
"version": "1.3.5",
1717
"transport": {
1818
"type": "stdio"
1919
},
20-
"environment_variables": [
20+
"environmentVariables": [
2121
{
2222
"description": "AniList API token for authenticated requests",
23-
"is_required": false,
23+
"isRequired": false,
2424
"format": "string",
25-
"is_secret": true,
25+
"isSecret": true,
2626
"name": "ANILIST_TOKEN"
2727
}
2828
]
2929
},
3030
{
31-
"registry_type": "oci",
32-
"registry_base_url": "https://ghcr.io",
31+
"registryType": "oci",
32+
"registryBaseUrl": "https://ghcr.io",
3333
"identifier": "yuna0x0/anilist-mcp",
34-
"version": "1.3.4",
34+
"version": "1.3.5",
3535
"transport": {
3636
"type": "stdio"
3737
},
38-
"environment_variables": [
38+
"environmentVariables": [
3939
{
4040
"description": "AniList API token for authenticated requests",
41-
"is_required": false,
41+
"isRequired": false,
4242
"format": "string",
43-
"is_secret": true,
43+
"isSecret": true,
4444
"name": "ANILIST_TOKEN"
4545
}
4646
]
4747
},
4848
{
49-
"registry_type": "mcpb",
50-
"identifier": "https://github.com/yuna0x0/anilist-mcp/releases/download/v1.3.4/anilist-mcp-1.3.4.mcpb",
51-
"file_sha256": "ffbf29b85dce3a9aee4c186afab98c0521b08153b2942fe5b887811c6402d342",
52-
"version": "1.3.4",
49+
"registryType": "mcpb",
50+
"identifier": "https://github.com/yuna0x0/anilist-mcp/releases/download/v1.3.5/anilist-mcp-1.3.5.mcpb",
51+
"fileSha256": "40a76d2027c01ac43c592bf14a08beed7bdc4faca1d814086d11dbd664efd24a",
52+
"version": "1.3.5",
5353
"transport": {
5454
"type": "stdio"
5555
},
56-
"environment_variables": [
56+
"environmentVariables": [
5757
{
5858
"description": "AniList API token for authenticated requests",
59-
"is_required": false,
59+
"isRequired": false,
6060
"format": "string",
61-
"is_secret": true,
61+
"isSecret": true,
6262
"name": "ANILIST_TOKEN"
6363
}
6464
]

0 commit comments

Comments
 (0)