Julia Documentation MCP Server

list-package

List available symbols in a Julia package or module

Input Schema

NameRequiredDescriptionDefault
include_unexportedNoWhether to include unexported symbols
pathYesPackage or module name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "include_unexported": { "description": "Whether to include unexported symbols", "type": "boolean" }, "path": { "description": "Package or module name", "type": "string" } }, "required": [ "path" ], "type": "object" }