Julia Documentation MCP Server

get-doc

Retrieve Julia documentation for packages, modules, types, functions, or methods. Specify the object path, choose detail level (concise, full, all), and include unexported symbols if needed. Simplify access to Julia-related information.

Instructions

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" }

Other Tools from Julia Documentation MCP Server

Related Tools

ID: 7xy80o4wdp