Julia Documentation MCP Server

get-doc

Get Julia documentation for a package, module, type, function, or method

Input Schema

NameRequiredDescriptionDefault
detail_levelNoLevel of documentation detail: concise (just signatures), full (standard docs), or all (including internals)
include_unexportedNoWhether to include unexported symbols
pathYesPath to Julia object (e.g., 'Base.sort', 'AbstractArray')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "detail_level": { "description": "Level of documentation detail: concise (just signatures), full (standard docs), or all (including internals)", "enum": [ "concise", "full", "all" ], "type": "string" }, "include_unexported": { "description": "Whether to include unexported symbols", "type": "boolean" }, "path": { "description": "Path to Julia object (e.g., 'Base.sort', 'AbstractArray')", "type": "string" } }, "required": [ "path" ], "type": "object" }