Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Kotlin Library Sources

OCI · GHCR.IO/AORESHKOV/KOTLIN-LIB-MCP:0.4.0 · SCANNED AUG 3

Exposes the public API, KDoc and sources of Maven-published Kotlin/Java libraries to MCP clients

41 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • CVE data not yet available for this package.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency-health data not yet available.Unverified
Provenance & Transparency45
Schema Quality & AI Usability85
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1300 tokens (~130/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 2 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0

# add to Claude Code
claude mcp add aoreshkov-kotlin-lib-mcp -- docker run --rm -i ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0
# add to Codex CLI
codex mcp add aoreshkov-kotlin-lib-mcp -- docker run --rm -i ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "aoreshkov-kotlin-lib-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  aoreshkov-kotlin-lib-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0"]
// mcp.json
{
  "mcpServers": {
    "aoreshkov-kotlin-lib-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 1 Aug 26 +32
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
    • Schema quality: unverified → 100 functional
    • Tool coverage: unverified → 100 functional
    • First check of Tool coverage: 100 functional
    • First check of Tool coverage: 100 functional
    • First check of Schema quality: fail functional
    • First check of Schema quality: excellent functional
    • First check of Schema quality: fail functional
  • 31 Jul 26 9

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed oci/ghcr.io/aoreshkov/kotlin-lib-mcp:0.4.0

Provenance none

Ecosystem: oci · Outcome: none

Reason: no_attestation

MCP tools — 10 exposed · ~1,210 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
fetch_library ~170

Download, extract and analyze the sources of a Maven-published Kotlin/Java library, warming the local cache. Idempotent — call this once per coordinate before using the other tools. The version may be omitted or set to 'latest' (e.g. 'io.ktor:ktor-client-core' or 'io.ktor:ktor-client-core:latest') to fetch the latest stable release — clients that support elicitation may ask the user to pick a version in that case. Returns a summary (resolved coordinate, KMP targets, file and package counts).

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'. The version may be omitted or 'latest' to resolve the latest stable release.
NameTypeReqDescription
coordinateyes
fromCacheboolean
packageCountinteger
resolvedTargetsarray
sourceFileCountinteger

No examples provided.

get_api_signature ~109

Full resolved signature of one declaration by fully-qualified name: type parameters, parameters, return type, supertypes, modifiers. 'bestEffort: true' marks signatures recovered from raw source when type resolution was incomplete.

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
fqNamestringyesFully-qualified declaration name, e.g. 'io.ktor.client.HttpClient'
NameTypeReqDescription
symbolyes

No examples provided.

get_dependencies ~103

Dependency tree of a library parsed from its .pom/.module metadata: direct dependencies with scopes, optionally transitive to a bounded depth. Works without fetch_library (reads repository metadata, not sources).

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
depthintegerTransitive resolution depth, 1-5 (default 1 = direct only)
NameTypeReqDescription
rootyes

No examples provided.

get_kdoc ~108

KDoc of one declaration by fully-qualified name: summary, description, and structured tags (@param, @return, @throws, @sample, …). 'kdoc: null' means the declaration is undocumented.

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
fqNamestringyesFully-qualified declaration name, e.g. 'io.ktor.client.HttpClient'
NameTypeReqDescription
fqNamestringyes
kdoc

No examples provided.

get_latest_version ~122

Resolve the latest version of an artifact from the repository's maven-metadata.xml. Accepts 'group:artifact' or a full 'group:artifact:version' coordinate (the version part is ignored). Returns the latest stable release plus the newest version overall (including pre-releases) and the total version count. Works without fetch_library.

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact' or 'group:artifact:version'
includePreReleasesbooleanTreat the newest pre-release as 'the latest' (default false)
NameTypeReqDescription
artifactstringyes
groupstringyes
includedPreReleasesboolean
latest
latestStable
totalVersionsinteger

No examples provided.

get_source ~125

Raw source of a whole file (by 'path', as returned by other tools, e.g. 'jvm/io/ktor/client/HttpClient.kt') or of a single declaration (by 'fqName'). Provide exactly one of the two.

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
fqNamestringFully-qualified declaration name to slice out of its file
pathstringSource file path relative to the extracted sources root
NameTypeReqDescription
contentstringyes
pathstringyes
startLineinteger

No examples provided.

list_declarations ~190

List classes/interfaces/objects/functions/properties of a fetched library with signatures and visibility. Optionally filter by package and visibility (public [default], internal, or all). Results are paged ('truncated: true' with a 'totalCount' when more matched than the returned page; advance 'offset' to fetch the rest).

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
maxResultsintegerPage size, 1-500 (default 100)
offsetintegerNumber of matching declarations to skip for paging (default 0)
packagestringOnly declarations in this package, e.g. 'io.ktor.client'
visibilitystringVisibility filter: 'public' (default), 'internal', or 'all'
NameTypeReqDescription
coordinateyes
declarationsarray
packageName
totalCountinteger
truncatedboolean

No examples provided.

list_packages ~65

List the packages discovered in a fetched library's sources, with declaration counts and the KMP targets each package appears in.

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
NameTypeReqDescription
coordinateyes
packagesarray

No examples provided.

list_versions ~76

List the published versions of an artifact from the repository's maven-metadata.xml. Accepts 'group:artifact' or a full 'group:artifact:version' coordinate (the version part is ignored). Works without fetch_library.

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact' or 'group:artifact:version'
NameTypeReqDescription
artifactstringyes
groupstringyes
versionsarray

No examples provided.

search_source ~142

Search a fetched library's sources line by line and return file:line hits with a snippet. Substring match by default; set 'regex' for Kotlin regex syntax. Results are capped ('truncated: true' when more existed).

NameTypeReqDescription
coordinatestringyesMaven coordinate 'group:artifact:version', e.g. 'io.ktor:ktor-client-core:3.5.1'
maxResultsintegerResult cap, 1-200 (default 50)
querystringyesSubstring (default) or regex to search for
regexbooleanTreat 'query' as a regular expression (default false)
NameTypeReqDescription
hitsarray
querystringyes
truncatedboolean

No examples provided.