Skip to content

Commit cef9620

Browse files
committed
Bump to 1.3.9 and remove invalid websiteUrl in server.json
1 parent 0d6e70d commit cef9620

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
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.8"
31+
LABEL org.opencontainers.image.version="1.3.9"
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.8",
54+
version: "1.3.9",
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.2",
33
"name": "anilist-mcp",
44
"display_name": "AniList MCP",
5-
"version": "1.3.8",
5+
"version": "1.3.9",
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.8",
3+
"version": "1.3.9",
44
"mcpName": "io.github.yuna0x0/anilist-mcp",
55
"description": "AniList MCP server for accessing AniList API data",
66
"type": "module",

server.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
"name": "io.github.yuna0x0/anilist-mcp",
44
"description": "AniList MCP server for accessing AniList API data",
55
"title": "AniList",
6-
"websiteUrl": "https://github.com/yuna0x0/anilist-mcp",
76
"repository": {
87
"url": "https://github.com/yuna0x0/anilist-mcp",
98
"source": "github",
109
"id": "952023806"
1110
},
12-
"version": "1.3.8",
11+
"version": "1.3.9",
1312
"icons": [
1413
{
1514
"src": "https://anilist.co/img/icons/icon.svg",
@@ -22,7 +21,7 @@
2221
"registryType": "npm",
2322
"registryBaseUrl": "https://registry.npmjs.org",
2423
"identifier": "anilist-mcp",
25-
"version": "1.3.8",
24+
"version": "1.3.9",
2625
"transport": {
2726
"type": "stdio"
2827
},
@@ -38,7 +37,7 @@
3837
},
3938
{
4039
"registryType": "oci",
41-
"identifier": "ghcr.io/yuna0x0/anilist-mcp:1.3.8",
40+
"identifier": "ghcr.io/yuna0x0/anilist-mcp:1.3.9",
4241
"transport": {
4342
"type": "stdio"
4443
},
@@ -54,8 +53,8 @@
5453
},
5554
{
5655
"registryType": "mcpb",
57-
"identifier": "https://github.com/yuna0x0/anilist-mcp/releases/download/v1.3.8/anilist-mcp-1.3.8.mcpb",
58-
"fileSha256": "969655dbf88970c6f23744dca9b48ab131efb6ec3df863ba33732711a659ff33",
56+
"identifier": "https://github.com/yuna0x0/anilist-mcp/releases/download/v1.3.9/anilist-mcp-1.3.9.mcpb",
57+
"fileSha256": "e149213c661cd8473c5deb1f6a852e65db90dfdf90ff60890ebadd38a389b12e",
5958
"transport": {
6059
"type": "stdio"
6160
},

0 commit comments

Comments
 (0)