An MCP server for accessing Julia documentation and source code.
An MCP server that efficiently serves context to Claude Desktop about Julia documentation and source code.
get-doc
Gets Julia documentation for a package, module, type, function, or method.
path
(string) - Path to Julia object (e.g., 'Base.sort', 'AbstractArray')get-source
Gets Julia source code for a function, type, or method.
path
(string) - Path to Julia object (e.g., 'Base.sort', 'AbstractArray')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:
JULIA_PROJECT
is set in the config# 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
Contributions are welcome! Please feel free to submit a Pull Request.
Credit goes to mrjoshuak/godoc-mcp for inspiring this project
MIT License - see LICENSE file for details
A proof-of-concept MCP server built with Node.js and TypeScript, compatible with Claude Desktop.
A server for managing sequential development tasks with configurable rules using external .mdc files.
MCP server to provide Jira Tickets information to AI coding agents like Cursor.
An unofficial MCP server plugin for remote control of Unreal Engine using AI tools.
Provides LLMs with essential random generation abilities, built entirely on Python's standard library.
A Retrieval-Augmented Generation (RAG) server for document processing, vector storage, and intelligent Q&A, powered by the Model Context Protocol.
Interact with the Moralis Web3 API to access blockchain data and services.
Access and interact with your Kibana instance using natural language or programmatic requests.
Orchestration tool for managing multiple MCP servers with a Docker Compose-style interface and a unified HTTP proxy.
A test server that demonstrates all features of the MCP protocol, including prompts, tools, resources, and sampling.