Julia Documentation MCP Server
An MCP server for accessing Julia documentation and source code.
Julia Documentation MCP Server
An MCP server that efficiently serves context to Claude Desktop about Julia documentation and source code.
Features
- Get documentation for Julia packages, modules, types, functions, and methods
- View source code for Julia functions, types, and methods
- Built-in caching with 5-minute TTL
- Proper error handling for Julia-specific errors
Tools
get-doc
Gets Julia documentation for a package, module, type, function, or method.
- Parameter:
path(string) - Path to Julia object (e.g., 'Base.sort', 'AbstractArray')
get-source
Gets Julia source code for a function, type, or method.
- Parameter:
path(string) - Path to Julia object (e.g., 'Base.sort', 'AbstractArray')
Requirements
- Node.js 16 or higher
- Julia 1.9 or higher installed and accessible in PATH
- Claude Desktop
Configuration
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"juliadoc": {
"command": "npx",
"args": [
"-y",
"@jonathanfischer97/server-juliadoc"
],
"env": {
"JULIA_PROJECT": "/path/to/your/julia/project"
}
}
}
}
The server will use:
- Your specified Julia project if
JULIA_PROJECTis set in the config - The default global Julia environment if no project is specified
- Your system's default Julia installation (must be accessible in PATH)
Development
# Clone the repository
git clone https://github.com/jonathanfischer97/juliadoc-mcp.git
cd juliadoc-mcp
# Install dependencies
npm install
# Build
npm run build
# Start server locally
npm start
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Credit goes to mrjoshuak/godoc-mcp for inspiring this project
License
MIT License - see LICENSE file for details
Related Servers
MCP Server Template
A template for creating MCP servers using Python.
MCP Android Agent
Automate Android devices using the uiautomator2 library, requiring adb and a connected device.
Chalee MCP RAG
A Retrieval-Augmented Generation (RAG) server for document processing, vector storage, and intelligent Q&A, powered by the Model Context Protocol.
JADX-AI-MCP
A JADX decompiler plugin that integrates with MCP to provide live reverse engineering support using LLMs.
OpenZeppelin MCP Servers
Model Context Protocol Servers Repository for OpenZeppelin Products
Webflow
Interact with the Webflow API to manage sites, collections, and items.
PermShell MCP
Execute shell commands with permission notifications.
MCP Servers
A collection of reference implementations for the Model Context Protocol (MCP), demonstrating how to give LLMs secure access to tools and data using Typescript and Python SDKs.
FastAPI-MCP
A zero-configuration tool to automatically expose FastAPI endpoints as MCP tools.
SVG to PNG MCP Server
A server that converts SVG code to PNG images using the cairosvg library.