Zum Inhalt springen

Verlauf von Scholar MCP

io.github.pvliesdonk/scholar-mcp · Status: aktiv

Wenn Sie hier Ihren eigenen Kontonamen wiederfinden: formlos an German.saas@web.de, unter Angabe der Kennung. Ein Grund muss nicht genannt werden. Wie Sie widersprechen

Jede veröffentlichte Änderung an diesem Eintrag, die jüngste zuerst.

Änderungen
2026-08-23Version: 1.9.0 → 1.9.1
2026-08-23Pfadargument vorhanden: false → true
2026-08-23Im Register geändert am (Rohangabe): 2026-07-19 → 2026-08-22
2026-08-23Im Register eingetragen am (Rohangabe): 2026-07-19 → 2026-08-22
2026-08-23Beschreibungen der Umgebungsvariablen (Rohangabe): FASTMCP_LOG_LEVEL=Log level (DEBUG, INFO, WARNING, ERROR) · PGID=Run as this GID (Docker entrypoint) · PUID=Run as this UID (Docker entrypoint) · SCHOLAR_MCP_BASE_URL=Public base URL of this server, required for OIDC (e.g. https://mcp.example.com) · SCHOLAR_MCP_BEARER_TOKEN=Static bearer token for authentication (optional) · SCHOLAR_MCP_KV_STORE_URL=Persistent-state backend URL for pvl-core subsystems. Schemes: file:///path (survives restarts), memory:// (dev/ephemeral). · SCHOLAR_MCP_OIDC_CLIENT_ID=OIDC client ID · SCHOLAR_MCP_OIDC_CLIENT_SECRET=OIDC client secret · SCHOLAR_MCP_OIDC_CONFIG_URL=OIDC discovery endpoint URL (e.g. https://auth.example.com/.well-known/openid-configuration) · SCHOLAR_MCP_OIDC_JWT_SIGNING_KEY=JWT signing key — required on Linux/Docker to survive restarts (generate with: openssl rand -hex 32) · SCHOLAR_MCP_READ_ONLY=Set to 'false' to enable write tools (default: true) · SCHOLAR_MCP_SERVER_NAME=MCP server name shown to clients → FASTMCP_ENABLE_RICH_LOGGING=Set false for plain or structured JSON log output. · FASTMCP_LOG_LEVEL=Log level for FastMCP internals and app loggers (DEBUG / INFO / WARNING / ERROR / CRITICAL). The -v CLI flag overrides to DEBUG. · PGID=Run the server process as this GID; pair with PUID to match the owner of a mounted volume. · PUID=Run the server process as this UID; the container entrypoint chowns writable paths to match. · SCHOLAR_GITHUB_TOKEN=GitHub token used to raise rate limits when fetching standards documents from GitHub. Optional; unauthenticated requests work at reduced limits. · SCHOLAR_MCP_APP_DOMAIN=MCP Apps iframe domain, used for CSP sandboxing. Overrides the host derived from `base_url`. · SCHOLAR_MCP_AUTH_MODE=Explicit auth-mode override, accepting `remote` or `oidc-proxy` (case- and whitespace-insensitive). When unset the mode is auto-detected from which auth variables are set; the override exists because having all four OIDC variables set is ambiguous between those two modes. Other values are ignored with a warning. · SCHOLAR_MCP_BASE_URL=Public base URL of the deployed server, e.g. `https://mcp.example.com`. Required for OIDC. Also the fallback source of the MCP Apps domain when `app_domain` is unset. · SCHOLAR_MCP_BEARER_DEFAULT_SUBJECT=Subject assigned to the single-token bearer mode; ignored when `bearer_tokens_file` is set, since mapped mode carries per-token subjects. · SCHOLAR_MCP_BEARER_TOKEN=Single shared bearer token; enables bearer auth unless `bearer_tokens_file` is set, which takes precedence. · SCHOLAR_MCP_BEARER_TOKENS_FILE=Path to a TOML file mapping bearer tokens to subjects; overrides the single-token `bearer_token` mode. · SCHOLAR_MCP_CACHE_DIR=Directory for the SQLite cache database (cache.db) and downloaded PDFs (pdfs/, md/). · SCHOLAR_MCP_CONTACT_EMAIL=Contact email for the OpenAlex polite pool (improves rate limits). Also enables Unpaywall lookups as a PDF fallback source. · SCHOLAR_MCP_DOCLING_URL=Base URL of a running docling-serve instance for PDF conversion (e.g. http://localhost:5001). When unset, PDF conversion tools return an error. · SCHOLAR_MCP_EPO_CONSUMER_KEY=EPO Open Patent Services consumer key. Optional; patent tools are hidden when unset. Register at https://developers.epo.org/user/register. · SCHOLAR_MCP_EPO_CONSUMER_SECRET=EPO Open Patent Services consumer secret. Optional; patent tools are hidden when unset. · SCHOLAR_MCP_GOOGLE_BOOKS_API_KEY=Google Books API key. Optional; book tools work unauthenticated at reduced rate limits. · SCHOLAR_MCP_HTTP_PATH=Mount path for the MCP endpoint. · SCHOLAR_MCP_INSTRUCTIONS=Replaces the default MCP instructions text sent to clients. · SCHOLAR_MCP_KV_STORE_URL=Persistent-state backend URL shared by every pvl-core subsystem that needs state. `memory://` is in-process and lost on restart; `file:///path` persists on one server; `redis://`, `dynamodb://` and `mongodb://` each need their matching extra. When unset, defaults to `file:///data/state` (the volume family Docker images mount), or to `memory://` — with a warning — on a host where that directory is not usable. · SCHOLAR_MCP_OIDC_ADVERTISED_SCOPES=Scopes advertised to MCP clients in protected-resource metadata, space- or comma-separated. Overrides the default `openid offline_access`; `oidc_required_scopes` is always added on top. Set this when the registered client is not permitted `offline_access`, or to have clients request extra claim scopes (e.g. `groups`) without also requiring them in every token. · SCHOLAR_MCP_OIDC_AUDIENCE=Expected `aud` claim; tokens issued for another audience are rejected. · SCHOLAR_MCP_OIDC_CLIENT_ID=OIDC client identifier registered with the provider. · SCHOLAR_MCP_OIDC_CLIENT_SECRET=OIDC client secret registered with the provider. · SCHOLAR_MCP_OIDC_CONFIG_URL=OIDC discovery document URL, e.g. `https://auth.example.com/.well-known/openid-configuration`. · SCHOLAR_MCP_OIDC_JWT_SIGNING_KEY=Signing key for issued JWTs; used in oidc-proxy mode only. When unset, the key is derived deterministically from `oidc_client_secret`, so tokens survive a restart — but rotating that secret invalidates every issued token. Set this explicitly to decouple token validity from secret rotation. Generate with `openssl rand -hex 32`. · SCHOLAR_MCP_OIDC_REQUIRED_SCOPES=Scopes a caller must present, space- or comma-separated. Defaults to `openid` in oidc-proxy mode. · SCHOLAR_MCP_OIDC_VERIFY_ACCESS_TOKEN=Validate the access token instead of the id token. · SCHOLAR_MCP_READ_ONLY=When true, write-tagged tools (PDF download and conversion cache writes) are hidden. Set false to enable them. · SCHOLAR_MCP_S2_API_KEY=Semantic Scholar API key. Optional but strongly recommended: unauthenticated requests are limited to ~1 req/s. Request one at https://www.semanticscholar.org/product/api#api-key-form. · SCHOLAR_MCP_SERVER_NAME=Rename this server instance; defaults to the project name. · SCHOLAR_MCP_TOOLS_ALLOW=Comma-separated explicit tool names this instance exposes; every other tool is hidden from listings and cannot be invoked. Names matching no registered tool are inert. Mutually exclusive with `tools_deny`. Takes effect through `apply_tool_visibility`. · SCHOLAR_MCP_TOOLS_DENY=Comma-separated explicit tool names hidden from this instance (absent from listings, cannot be invoked). Names matching no registered tool are inert. Mutually exclusive with `tools_allow`. Takes effect through `apply_tool_visibility`. · SCHOLAR_MCP_VLM_API_KEY=API key for the VLM endpoint. · SCHOLAR_MCP_VLM_API_URL=OpenAI-compatible VLM endpoint for formula and figure enrichment during PDF conversion. · SCHOLAR_MCP_VLM_MODEL=Model name to use with the VLM endpoint.
2026-08-23Formate der Umgebungsvariablen (Rohangabe): – → boolean, filepath, number
2026-08-23Laufzeithinweise (Rohangabe): – → uvx
2026-08-23Paketversionen (Rohangabe): 1.9.0 → 1.9.1
2026-08-23Paketbezeichner (Rohangabe): ghcr.io/pvliesdonk/scholar-mcp:v1.9.0, pvliesdonk-scholar-mcp → ghcr.io/pvliesdonk/scholar-mcp:v1.9.1, pvliesdonk-scholar-mcp
2026-08-23Pfad-Umgebungsvariablen (Rohangabe): – → SCHOLAR_MCP_BEARER_TOKENS_FILE, SCHOLAR_MCP_CACHE_DIR
2026-08-23Umgebungsvariablen (Rohangabe): SCHOLAR_MCP_READ_ONLY, SCHOLAR_MCP_BEARER_TOKEN, SCHOLAR_MCP_READ_ONLY, FASTMCP_LOG_LEVEL, SCHOLAR_MCP_KV_STORE_URL, SCHOLAR_MCP_SERVER_NAME, PUID, PGID, SCHOLAR_MCP_BEARER_TOKEN, SCHOLAR_MCP_BASE_URL, SCHOLAR_MCP_OIDC_CONFIG_URL, SCHOLAR_MCP_OIDC_CLIENT_ID, SCHOLAR_MCP_OIDC_CLIENT_SECRET, SCHOLAR_MCP_OIDC_JWT_SIGNING_KEY → SCHOLAR_MCP_KV_STORE_URL, SCHOLAR_MCP_TOOLS_ALLOW, SCHOLAR_MCP_TOOLS_DENY, SCHOLAR_MCP_SERVER_NAME, SCHOLAR_MCP_INSTRUCTIONS, FASTMCP_LOG_LEVEL, FASTMCP_ENABLE_RICH_LOGGING, SCHOLAR_GITHUB_TOKEN, SCHOLAR_MCP_READ_ONLY, SCHOLAR_MCP_S2_API_KEY, SCHOLAR_MCP_DOCLING_URL, SCHOLAR_MCP_VLM_API_URL, SCHOLAR_MCP_VLM_API_KEY, SCHOLAR_MCP_VLM_MODEL, SCHOLAR_MCP_CACHE_DIR, SCHOLAR_MCP_CONTACT_EMAIL, SCHOLAR_MCP_EPO_CONSUMER_KEY, SCHOLAR_MCP_EPO_CONSUMER_SECRET, SCHOLAR_MCP_GOOGLE_BOOKS_API_KEY, SCHOLAR_MCP_BASE_URL, SCHOLAR_MCP_BEARER_TOKEN, SCHOLAR_MCP_OIDC_CONFIG_URL, SCHOLAR_MCP_OIDC_CLIENT_ID, SCHOLAR_MCP_OIDC_CLIENT_SECRET, SCHOLAR_MCP_OIDC_AUDIENCE, SCHOLAR_MCP_OIDC_REQUIRED_SCOPES, SCHOLAR_MCP_OIDC_ADVERTISED_SCOPES, SCHOLAR_MCP_OIDC_JWT_SIGNING_KEY, SCHOLAR_MCP_OIDC_VERIFY_ACCESS_TOKEN, SCHOLAR_MCP_KV_STORE_URL, SCHOLAR_MCP_APP_DOMAIN, SCHOLAR_MCP_TOOLS_ALLOW, SCHOLAR_MCP_TOOLS_DENY, SCHOLAR_MCP_AUTH_MODE, SCHOLAR_MCP_BEARER_TOKENS_FILE, SCHOLAR_MCP_BEARER_DEFAULT_SUBJECT, SCHOLAR_MCP_SERVER_NAME, SCHOLAR_MCP_INSTRUCTIONS, SCHOLAR_MCP_HTTP_PATH, PUID, PGID, FASTMCP_LOG_LEVEL, FASTMCP_ENABLE_RICH_LOGGING, SCHOLAR_GITHUB_TOKEN, SCHOLAR_MCP_READ_ONLY, SCHOLAR_MCP_S2_API_KEY, SCHOLAR_MCP_DOCLING_URL, SCHOLAR_MCP_VLM_API_URL, SCHOLAR_MCP_VLM_API_KEY, SCHOLAR_MCP_VLM_MODEL, SCHOLAR_MCP_CACHE_DIR, SCHOLAR_MCP_CONTACT_EMAIL, SCHOLAR_MCP_EPO_CONSUMER_KEY, SCHOLAR_MCP_EPO_CONSUMER_SECRET, SCHOLAR_MCP_GOOGLE_BOOKS_API_KEY
2026-08-23Homepage: https://github.com/pvliesdonk/scholar-mcp → https://pvliesdonk.github.io/scholar-mcp/
2026-08-23Name: Scholar MCP Server → Scholar MCP
2026-08-16Im Register geändert am (Rohangabe): – → 2026-07-19
2026-08-16Im Register eingetragen am (Rohangabe): – → 2026-07-19
2026-08-16Statusmeldung des Registers (Rohangabe): – → –
2026-08-16Schemafassung des Rohsatzes (Rohangabe): – → https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json
2026-08-16Symbolformate (Rohangabe): – → –
2026-08-16Beschreibungen der Umgebungsvariablen (Rohangabe): – → FASTMCP_LOG_LEVEL=Log level (DEBUG, INFO, WARNING, ERROR) · PGID=Run as this GID (Docker entrypoint) · PUID=Run as this UID (Docker entrypoint) · SCHOLAR_MCP_BASE_URL=Public base URL of this server, required for OIDC (e.g. https://mcp.example.com) · SCHOLAR_MCP_BEARER_TOKEN=Static bearer token for authentication (optional) · SCHOLAR_MCP_KV_STORE_URL=Persistent-state backend URL for pvl-core subsystems. Schemes: file:///path (survives restarts), memory:// (dev/ephemeral). · SCHOLAR_MCP_OIDC_CLIENT_ID=OIDC client ID · SCHOLAR_MCP_OIDC_CLIENT_SECRET=OIDC client secret · SCHOLAR_MCP_OIDC_CONFIG_URL=OIDC discovery endpoint URL (e.g. https://auth.example.com/.well-known/openid-configuration) · SCHOLAR_MCP_OIDC_JWT_SIGNING_KEY=JWT signing key — required on Linux/Docker to survive restarts (generate with: openssl rand -hex 32) · SCHOLAR_MCP_READ_ONLY=Set to 'false' to enable write tools (default: true) · SCHOLAR_MCP_SERVER_NAME=MCP server name shown to clients
2026-08-16Formate der Umgebungsvariablen (Rohangabe): – → –
2026-08-16Bereitstellungsform (Rohangabe): – → paket
2026-08-16Remote-Hosts (Rohangabe): – → –
2026-08-16Remote-Adressen (Rohangabe): – → –
2026-08-16Laufzeithinweise (Rohangabe): – → –
2026-08-16Paketversionen (Rohangabe): – → 1.9.0
2026-08-16Paketbezeichner (Rohangabe): – → ghcr.io/pvliesdonk/scholar-mcp:v1.9.0, pvliesdonk-scholar-mcp
2026-08-16Repository-Unterordner (Rohangabe): – → –
2026-08-16Repository-Plattform (Rohangabe): – → github
2026-08-16Pfad-Umgebungsvariablen (Rohangabe): – → –
2026-08-16Geheime Pflichtkopfzeilen (Rohangabe): – → –
2026-08-06Version: – → 1.9.0
2026-08-06Repository-Adresse geführt: – → true
2026-08-06Pfadargument vorhanden: – → false
2026-08-06Ausführungsort: – → lokal
2026-08-06Zugangsdaten erforderlich: – → false
2026-08-06Paketquellen (Rohangabe): – → oci, pypi
2026-08-06Repository (Rohangabe): – → https://github.com/pvliesdonk/scholar-mcp
2026-08-06Pfadargumente (Rohangabe): – → –
2026-08-06Transportarten (Rohangabe): – → stdio, streamable-http
2026-08-06Geheime Pflichtvariablen (Rohangabe): – → –
2026-08-06Umgebungsvariablen (Rohangabe): – → SCHOLAR_MCP_READ_ONLY, SCHOLAR_MCP_BEARER_TOKEN, SCHOLAR_MCP_READ_ONLY, FASTMCP_LOG_LEVEL, SCHOLAR_MCP_KV_STORE_URL, SCHOLAR_MCP_SERVER_NAME, PUID, PGID, SCHOLAR_MCP_BEARER_TOKEN, SCHOLAR_MCP_BASE_URL, SCHOLAR_MCP_OIDC_CONFIG_URL, SCHOLAR_MCP_OIDC_CLIENT_ID, SCHOLAR_MCP_OIDC_CLIENT_SECRET, SCHOLAR_MCP_OIDC_JWT_SIGNING_KEY

tracevero · https://tracevero.de/mcp/io-github-pvliesdonk-scholar-mcp/aenderungen