AgentHubAgentHub

Audiobookshelf MCP

MCP ServerMCP Registry官方收录

io.github.jeeftor/abs-mcp · v0.2.1

Inspect and safely operate Audiobookshelf libraries over MCP.

概览

Audiobookshelf MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "abs-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/jeeftor/abs-mcp:0.2.1"
      ],
      "env": {
        "ABS_BASE_URL": "<ABS_BASE_URL>",
        "ABS_API_KEY": "<ABS_API_KEY>"
      }
    }
  }
}

环境变量

ABS_BASE_URL必填

Base URL of your Audiobookshelf server.

ABS_API_KEY必填secret

Audiobookshelf API key or bearer token.

ABS_READ_ONLY可选

Set to false to enable scan and cleanup tools.

ABS_TIMEOUT可选

Audiobookshelf request timeout as a Go duration or seconds.

ABS_FIXTURE_DIR可选

Optional local ABS fixture directory for fixture resources.

ABS_EXTRA_HEADERS_FILE可选

Optional JSON file containing extra request headers.

ABS_TLS_CA_CERT_FILE可选

Optional PEM CA bundle for private or corporate ABS TLS.

ABS_TLS_INSECURE_SKIP_VERIFY可选

Temporary TLS verification bypass for local troubleshooting.

相关资源

统一 Manifest

{
  "id": "io.github.jeeftor/abs-mcp",
  "type": "mcp-server",
  "version": "0.2.1",
  "displayName": "Audiobookshelf MCP",
  "description": "Inspect and safely operate Audiobookshelf libraries over MCP.",
  "repository": {
    "url": "https://github.com/jeeftor/abs-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "oci",
        "identifier": "ghcr.io/jeeftor/abs-mcp:0.2.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "ABS_BASE_URL",
            "description": "Base URL of your Audiobookshelf server.",
            "isRequired": true
          },
          {
            "name": "ABS_API_KEY",
            "description": "Audiobookshelf API key or bearer token.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "ABS_READ_ONLY",
            "description": "Set to false to enable scan and cleanup tools."
          },
          {
            "name": "ABS_TIMEOUT",
            "description": "Audiobookshelf request timeout as a Go duration or seconds."
          },
          {
            "name": "ABS_FIXTURE_DIR",
            "description": "Optional local ABS fixture directory for fixture resources."
          },
          {
            "name": "ABS_EXTRA_HEADERS_FILE",
            "description": "Optional JSON file containing extra request headers."
          },
          {
            "name": "ABS_TLS_CA_CERT_FILE",
            "description": "Optional PEM CA bundle for private or corporate ABS TLS."
          },
          {
            "name": "ABS_TLS_INSECURE_SKIP_VERIFY",
            "description": "Temporary TLS verification bypass for local troubleshooting."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.jeeftor/abs-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.jeeftor%2Fabs-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Audiobookshelf MCP — MCP Server 安装与配置 · AgentHub