Claude Sidekick
Provides tools to generate text, chat, embed text, generate code, summarise text, list models, and pull models using locally running Ollama models.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Claude Sidekickgenerate a simple email template for customer onboarding using Ollama"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude Sidekick
A Model Context Protocol (MCP) server that connects Claude to your local Ollama models, allowing you to offload simpler tasks and save your Claude tokens for complex work.
Quick Start
1. Install Ollama
First, install Ollama on your system:
# macOS
brew install ollama
# Linux
curl -fsSL https://ollama.ai/install.sh | sh
# Windows
# Download from https://ollama.ai/downloadStart Ollama:
ollama serve2. Pull Some Models
Download useful models for different tasks:
# General purpose models
ollama pull gpt-oss # OpenAI's open-weight model
ollama pull llama3.2 # Fast, capable model
ollama pull qwen2.5 # High-quality text generation
# Specialised models
ollama pull deepseek-coder # Code generation
ollama pull nomic-embed-text # Text embeddings
ollama pull llama3.2:1b # Lightweight for simple tasks3. Set Up the MCP Server
Create a new directory and install dependencies:
mkdir mcp-ollama-server
cd mcp-ollama-server
# Copy the files (index.ts, package.json, tsconfig.json)
# Then install dependencies:
npm install
# Create src directory and move index.ts there
mkdir src
mv index.ts src/
# Build the project
npm run build4. Configure Claude Desktop
Add the server to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ollama": {
"command": "node",
"args": ["/absolute/path/to/your/mcp-ollama-server/dist/index.js"],
"env": {}
}
}
}5. Restart Claude Desktop
Restart Claude Desktop to load the new MCP server. You should see the Ollama tools available in Claude.
Related MCP server: Zen MCP Server
Available Tools
ollama_generate_text
Generate text for simple writing tasks, basic summaries, or straightforward content creation.
Best for: Simple writing, basic explanations, content generation
ollama_chat
Have conversations with local models for Q&A, explanations, or dialogue-based tasks.
Best for: Q&A sessions, explanations, interactive tasks
ollama_embed_text
Generate text embeddings for semantic similarity, clustering, or search.
Best for: Document similarity, semantic search, clustering
ollama_code_generation
Generate code using specialised coding models.
Best for: Simple scripts, boilerplate code, basic programming tasks
ollama_summarise
Summarise text content with different length options.
Best for: Document summaries, article condensation
ollama_list_models
List all available models on your Ollama installation.
ollama_pull_model
Download new models to Ollama.
Usage Examples
Once configured, Claude can use these tools like this:
Text Generation:
"Use Ollama to generate a simple email template for customer onboarding"
Code Generation:
"Have DeepSeek Coder create a Python script to parse CSV files"
Embeddings:
"Generate embeddings for these document titles using Nomic"
Summarisation:
"Use Llama to create a brief summary of this article"
Model Recommendations
For Text Generation
gpt-oss - Excellent balance of speed and quality
llama3.2 - Good balance of speed and quality
qwen2.5 - Higher quality but slower
llama3.2:1b - Very fast for simple tasks
For Coding
gpt-oss - Excellent code generation
deepseek-coder - Great code generation
qwen2.5-coder - Alternative coding model
For Embeddings
nomic-embed-text - Fast, high-quality embeddings
mxbai-embed-large - Larger embedding model
Configuration
Customising the Server
Edit src/index.ts to modify:
Base URL: Change Ollama endpoint (default:
http://localhost:11434)Timeout: Adjust request timeout (default: 5 minutes)
Default Models: Modify which models are used by default
Temperature Settings: Adjust creativity/randomness
Environment Variables
You can override settings with environment variables:
export OLLAMA_BASE_URL=http://localhost:11434
export OLLAMA_TIMEOUT=300000Troubleshooting
"Failed to connect to Ollama"
Ensure Ollama is running:
ollama serveCheck if it's accessible:
curl http://localhost:11434/api/tagsVerify no firewall blocking port 11434
"Model not found"
List available models:
ollama listPull the missing model:
ollama pull model-name
"MCP server not appearing in Claude"
Check the config file path is correct
Verify the absolute path to the built JavaScript file
Restart Claude Desktop completely
Check Claude Desktop logs for errors
Performance Tips
Use smaller models for simple tasks:
llama3.2:1bfor basic text generationqwen2.5:0.5bfor very simple tasks
Keep frequently used models warm:
# Pre-load models to keep them in memory ollama run llama3.2 "hello" ollama run deepseek-coder "print hello"Adjust temperature based on task:
Low (0.1-0.3) for factual/coding tasks
Medium (0.5-0.8) for creative writing
High (0.9-1.2) for very creative tasks
Development
Running in Development
npm run dev # Run with hot reload
npm run watch # Watch mode
npm run type-check # Check TypeScript types
npm run lint # Lint codeAdding New Tools
To add new capabilities:
Define the tool in
setupHandlers()Add the handler method
Update the Ollama client if needed
Rebuild and restart
Extending Model Support
To support new model types:
Add model configuration in the constructor
Create specific handler methods
Add appropriate prompting strategies
Example Workflow
Here's how you might use this in practice:
Initial analysis with Claude: "I need to analyse this dataset and create a comprehensive report"
Delegate simple tasks: "Use Ollama to generate basic descriptions for each data column"
Complex analysis with Claude: Claude does the sophisticated statistical analysis and insights
Offload summarisation: "Use Llama to summarise each section of findings"
Final review with Claude: Claude assembles everything into a polished report
This approach maximises your Claude token efficiency while still getting comprehensive results.
Security Notes
This server runs locally and doesn't send data externally
All model inference happens on your machine
No API keys or external services required
Your data stays completely private
Contributing
Feel free to extend this server with additional capabilities:
Image generation support
Model fine-tuning integration
Performance monitoring
Model switching strategies
Custom prompt templates
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andrewbrereton/claude-sidekick'
If you have feedback or need assistance with the MCP directory API, please join our Discord server