MCP ExplorerExplorer

Enhanced Dash Mcp

@joshuadanpetersonon 12 days ago
1ย MIT
FreeCommunity
AI Systems
๐Ÿš€ Intelligent MCP server bridging Claude AI with Dash (macOS documentation browser). Transforms local Dash docsets into context-aware documentation assistant with fuzzy search, project detection, content extraction, and Warp Terminal integration. Perfect for developers who want seamless API reference access while coding.

Overview

What is Enhanced Dash Mcp

Enhanced-dash-mcp is an intelligent Model Context Protocol (MCP) server that bridges Claude AI with the Dash documentation browser on macOS. It transforms local Dash docsets into a context-aware documentation assistant, providing developers with seamless access to API references while coding.

Use cases

Use cases include real-time documentation access while coding in IDEs, using command-line tools for development, and integrating with version control systems to provide context-aware documentation suggestions.

How to use

To use enhanced-dash-mcp, ensure you have macOS with the Dash app installed and Python 3.8 or higher. Download the necessary Dash docsets and ensure Claude supports MCP. You can integrate it with tools like Warp Terminal, tmux, and Neovim for enhanced productivity.

Key features

Key features include intelligent fuzzy search, content extraction from various formats, multi-tier caching for fast searches, project awareness for relevant documentation, implementation guidance, migration support, and access to the latest API references.

Where to use

Enhanced-dash-mcp is ideal for software development environments, particularly for developers working with JavaScript, Python, and various frameworks like React, Vue.js, and Django. It enhances productivity by providing quick access to relevant documentation.

Content

Enhanced Dash MCP Server

Version
Python
License
Platform
Ask DeepWiki
See CHANGELOG.md for version history. The changelog lists
releases in reverse chronological order so you can always view the newest
changes first while retaining the full history.

An intelligent Model Context Protocol (MCP) server that transforms your local Dash documentation into a powerful, context-aware assistant for Claude. Built for developers who want seamless access to documentation while coding.

๐Ÿš€ Features

Core Capabilities

  • ๐Ÿ” Intelligent Search - Fuzzy matching with typo tolerance and smart ranking
  • ๐Ÿ“š Content Extraction - Clean text extraction from HTML, Markdown, and text docs
  • โšก Multi-Tier Caching - Memory + disk caching for lightning-fast repeated searches
  • ๐ŸŽฏ Project Awareness - Automatically detects your tech stack and prioritizes relevant docs
  • ๐Ÿ› ๏ธ Implementation Guidance - Best practices and patterns for specific features
  • ๐Ÿ“ˆ Migration Support - Version upgrade documentation and breaking changes
  • ๐Ÿ”„ Latest API Reference - Current API docs with practical examples

Developer Workflow Integration

  • Warp Terminal - Native command palette and workflow integration
  • tmux - Background server execution across terminal sessions
  • Neovim - Documentation access while coding via Claude
  • Oh-My-Zsh - Enhanced aliases and productivity shortcuts
  • Git Integration - Repository-aware documentation suggestions

Supported Technologies

JavaScript/TypeScript, React, Next.js, Vue.js, Angular, Node.js, Python, Django, Flask, FastAPI, pandas, NumPy, and many more through Dash docsets.

๐Ÿ“‹ Prerequisites

  • macOS with Dash app installed
  • Python 3.8+ (Python 3.11+ recommended)
  • Dash docsets downloaded (JavaScript, Python, React, etc.)
  • Claude with MCP support
  • tmux (recommended for background execution)

โš ๏ธ Important Dependency Requirements

This server requires Pydantic v2.0+ for MCP compatibility. If you have existing projects with Pydantic v1.x, you may need to:

  1. Use a virtual environment (recommended)
  2. Check for compatibility with other tools (like pieces-os-client)
  3. Consider using separate Python environments for different projects
# Check your current Pydantic version
pip show pydantic

# If you have v1.x, you'll need to upgrade
pip install "pydantic>=2.0.0"

๐Ÿ“ฆ Dependencies

The setup script automatically installs all required dependencies, including:

  • mcp>=1.9.0 - Model Context Protocol framework
  • pydantic>=2.0.0 - Data validation (required for MCP compatibility)
  • beautifulsoup4>=4.12.0 - HTML content extraction
  • fuzzywuzzy>=0.18.0 - Fuzzy string matching
  • python-levenshtein>=0.27.0 - Fast string similarity
  • aiofiles>=24.0.0 - Async file operations
  • aiohttp>=3.11.0 - Async HTTP client
  • rapidfuzz>=3.0.0 - Enhanced fuzzy matching
  • typing-extensions>=4.12.0 - Extended type hints

โšก Quick Start

๐Ÿ”„ Important: Cache Clearing for Existing Users

If youโ€™re upgrading from a previous version, the server now discovers 8x more docsets (364 instead of 45) by searching the entire Dash directory tree. To see all the new docsets, clear the cache:

# Clear the docset cache to discover newly available docsets
rm -rf ~/.cache/dash-mcp/

# Then restart your server
dash-mcp-restart
# or
cd ~/enhanced-dash-mcp && ./start-dash-mcp.sh --test

What changed:

  • Before: Searched only ~/Library/Application Support/Dash/DocSets/ (45 docsets)
  • After: Searches entire ~/Library/Application Support/Dash/ directory (364 docsets)
  • Benefit: Now includes User Contributed, Python DocSets, Versioned DocSets, and more!

See docs/help.md for a brief overview of how to run the server.

1. Clone & Setup

# Clone or download the project files
mkdir ~/enhanced-dash-mcp && cd ~/enhanced-dash-mcp

# Make setup script executable
chmod +x scripts/setup-dash-mcp.sh

# Run automated setup
./scripts/setup-dash-mcp.sh

The script prompts for an installation directory. Press Enter to accept the
default path or provide a custom location. The default is ~/enhanced-dash-mcp.

2. Configure Claude

Add this to Claudeโ€™s MCP settings:

{
  "mcpServers": {
    "enhanced-dash-mcp": {
      "command": "$DASH_MCP_DIR/venv/bin/python3",
      "args": [
        "$DASH_MCP_DIR/enhanced_dash_server.py"
      ],
      "env": {}
    }
  }
}

3. Start & Test

# Add shell enhancements
echo "source ~/enhanced-dash-mcp/dash-mcp-aliases.sh" >> ~/.zshrc
source ~/.zshrc

# Start the server
dash-mcp-start

# Test with Claude
# "Search for React useState hook documentation"

๐ŸŽฎ Usage

Basic Documentation Search

# Ask Claude:
"Search for Python pandas DataFrame methods"
"Find React hooks best practices"
"Get FastAPI routing documentation with examples"

Project-Aware Intelligence

# Navigate to your project directory, then ask Claude:
"Analyze my current project and find relevant documentation"
"Get implementation guidance for user authentication in my React app"
"What are the best practices for my current Django project?"

Migration & Upgrade Help

# Ask Claude:
"Get migration docs for upgrading from React 17 to 18"
"Find Django 4.2 upgrade guide and breaking changes"
"Show me Next.js 13 to 14 migration documentation"

API Reference with Examples

# Ask Claude:
"Get latest pandas DataFrame.merge API reference with examples"
"Show me React useEffect hook documentation and patterns"
"Find Express.js middleware documentation with use cases"

๐Ÿ› ๏ธ Advanced Setup

Warp Terminal Integration

For enhanced Warp Terminal support:

# Run Warp-specific setup
chmod +x scripts/setup-warp-dash-mcp.sh
./scripts/setup-warp-dash-mcp.sh

# Use Command Palette (โŒ˜K):
dash-mcp-start
dash-analyze-project
dash-api-ref useState react

Shell Aliases & Functions

After setup, youโ€™ll have these convenient commands:

dash-mcp-start              # Start server in tmux
dash-mcp-status             # Check if running
dash-mcp-logs               # View server output
enhanced-dash-mcp-for-project       # Analyze current project
dash-api-lookup <api> <tech> # Quick API reference
dash-best-practices <feature> # Implementation guidance
dash-help                   # Show all commands

Powerlevel10k Integration

Add MCP server status to your prompt:

# Add to ~/.p10k.zsh (see p10k-dash-mcp.zsh for details)
# Shows ๐Ÿ“š when running, ๐Ÿ“• when stopped

๐Ÿ”ง Configuration

Cache Settings

# Default cache TTL: 1 hour
# Cache location: ~/.cache/dash-mcp/
# Memory + disk caching for optimal performance

Fuzzy Search Tuning

# Default threshold: 60% match
# Adjustable in server configuration
# Typo tolerance with intelligent ranking

Content Extraction Limits

# Default: 5000 characters per document
# Configurable for performance vs. detail trade-off

๐Ÿค– Automation & Non-Interactive Operation

The Enhanced Dash MCP server features comprehensive automation detection and non-interactive operation capabilities, making it suitable for CI/CD pipelines, deployment scripts, and containerized environments.

๐Ÿ” Interactive Mode Detection Logic

The server uses an 8-phase detection sequence to determine whether itโ€™s running in interactive or automated mode:

Phase 1: CI Environment Detection

Checks for continuous integration indicators:

# Primary CI Variables
CI, CONTINUOUS_INTEGRATION, GITHUB_ACTIONS, GITLAB_CI, JENKINS_URL
TRAVIS, CIRCLECI, BUILDKITE, DRONE, BITBUCKET_BUILD_NUMBER
AZURE_HTTP_USER_AGENT, CODEBUILD_BUILD_ID, TEAMCITY_VERSION
# And 15+ more CI environment variables

Phase 2: Automation Environment Detection

Identifies automated/batch processing:

# Automation Indicators
AUTOMATION, AUTOMATED, NON_INTERACTIVE, BATCH_MODE, HEADLESS
CRON, SYSTEMD_EXEC_PID, KUBERNETES_SERVICE_HOST, DOCKER_CONTAINER
AWS_EXECUTION_ENV, LAMBDA_RUNTIME_DIR, GOOGLE_CLOUD_PROJECT
# Cloud platforms: Heroku, Vercel, Netlify, Railway, etc.

Phase 3-8: Terminal & Process Environment

  • Terminal Type: Validates TERM environment (rejects dumb, unknown)
  • Shell Capabilities: Checks for interactive shell support
  • TTY Stream Detection: Verifies STDIN/STDOUT/STDERR are connected to terminals
  • Process Environment: Detects daemon processes, nohup, orphaned processes
  • SSH Connections: Validates TTY allocation in remote connections
  • Session Management: Recognizes tmux/screen sessions

๐Ÿ“Š Automation Behavior Matrix

Environment Type Detection Method Behavior Logging Level
GitHub Actions GITHUB_ACTIONS=true Silent, no prompts INFO
GitLab CI GITLAB_CI=true Silent, no prompts INFO
Docker Build CONTAINER=true or non-TTY Silent, no prompts INFO
Cron Jobs CRON=true or non-TTY Silent operation INFO
SSH Scripts SSH_CONNECTION without SSH_TTY Non-interactive INFO
Kubernetes KUBERNETES_SERVICE_HOST Pod-aware operation INFO
AWS Lambda LAMBDA_RUNTIME_DIR Serverless mode DEBUG
Local Terminal TTY + interactive shell Full interaction DEBUG

โš™๏ธ Automation-Specific Features

Timeout Protection

# All operations have built-in timeouts
Pip installations: 5-10 minute limits
User prompts: 10-second timeout with auto-defaults
Server startup: Quick validation mode for testing
Network operations: Configurable timeouts

Signal Handling

# Graceful shutdown in automation
SIGINT/SIGTERM: Clean resource cleanup
Keyboard interrupts: Logged and handled gracefully
Partial operations: Automatic rollback/cleanup
Exit codes: Standard automation-friendly codes

Non-Interactive Setup

# Setup script automation modes
./scripts/setup-dash-mcp.sh    # Auto-detects environment
CI=true ./scripts/setup-dash-mcp.sh    # Force CI mode
BATCH_MODE=true ./scripts/setup-dash-mcp.sh    # Force batch mode

๐Ÿ”’ Security & Safety

Environment Validation

  • Path Sanitization: Validates and sanitizes all file paths
  • Input Validation: Comprehensive query and parameter validation
  • Resource Limits: Memory and CPU usage constraints
  • Rate Limiting: Built-in request rate limiting (100 calls/minute)

Error Recovery

# Robust error handling
Partial installations: Automatic cleanup
Network failures: Retry mechanisms with backoff
Corrupted cache: Automatic cache rebuilding
Docset issues: Graceful degradation

๐Ÿ“ˆ Performance in Automation

Benchmarks

# Automation environment performance
CI installation time: ~70-80 seconds
Server validation: ~2-3 seconds
Docset discovery: ~500ms (first run), ~50ms (cached)
Timeout response: ~5 seconds maximum
Clean environment setup: ~70-75 seconds

Optimization for Automation

  • Parallel Operations: Concurrent docset scanning and validation
  • Smart Caching: Persistent cache survives container restarts
  • Lazy Loading: On-demand content extraction
  • Memory Management: Automatic cleanup of large operations

๐Ÿ› ๏ธ Automation Testing

The server includes comprehensive automation testing:

# Quick CI compatibility test
./test-ci-automation.sh

# Comprehensive automation validation
./test-final-validation.sh

# Individual component testing
./scripts/test-pip-install.sh
CI=true ./scripts/setup-dash-mcp.sh
env -i PATH=/usr/bin:/bin HOME=$HOME CI=true ./scripts/setup-dash-mcp.sh

Test Coverage

  • โœ… CI Environment Tests: GitHub Actions, GitLab CI, Jenkins
  • โœ… Container Tests: Docker builds, Kubernetes pods
  • โœ… Timeout Mechanism Tests: All operations respect timeouts
  • โœ… Signal Handling Tests: Graceful interruption and cleanup
  • โœ… Environment Detection Tests: All 26+ environment variables
  • โœ… Non-Interactive Tests: Stdin redirection, batch mode

๐Ÿ“‹ Deployment Examples

GitHub Actions Workflow

- name: Setup Enhanced Dash MCP
  run: |
    git clone <repository-url>
    cd enhanced-dash-mcp
    CI=true ./scripts/setup-dash-mcp.sh
    # No prompts, automatic defaults

Docker Container

RUN git clone <repository-url> && \\
    cd enhanced-dash-mcp && \\
    CONTAINER=true ./scripts/setup-dash-mcp.sh
# Detects container environment automatically

Kubernetes Job

command: ["/bin/bash", "-c"]
args:
  - |
    cd /app/enhanced-dash-mcp
    KUBERNETES_SERVICE_HOST=true ./scripts/setup-dash-mcp.sh
    python3 enhanced_dash_server.py --test

๐Ÿ” Debugging Automation Issues

Log Analysis

# View detailed environment detection logs
export DASH_MCP_LOG_LEVEL=DEBUG
python3 enhanced_dash_server.py --test

# Check automation detection reasoning
grep "Detection reason" ~/.cache/dash-mcp/server.log

# Verify environment variables
grep "Environment summary" ~/.cache/dash-mcp/server.log

Common Automation Scenarios

# Force interactive mode (testing)
export FORCE_INTERACTIVE=true

# Override environment detection
export DASH_MCP_MODE=interactive  # or 'automation'

# Detailed process information
export DASH_MCP_DEBUG_PROCESS=true

๐Ÿ—๏ธ Architecture

Core Components

  • DashMCPServer - Main server orchestrating all components
  • CacheManager - Multi-tier caching (memory + disk)
  • ContentExtractor - Clean text extraction from various formats
  • FuzzySearchEngine - Intelligent search with ranking algorithms
  • ProjectAwareDocumentationServer - Context-aware documentation selection

Data Flow

  1. Query received from Claude via MCP
  2. Project context analyzed (language, framework, dependencies)
  3. Relevant docsets identified and prioritized
  4. Fuzzy search performed with intelligent ranking
  5. Content extracted and cached for future requests
  6. Results returned with project-specific scoring

Caching Strategy

  • Memory Cache - Instant access for recently searched items
  • Disk Cache - Persistent storage surviving server restarts
  • Smart Expiration - 1-hour TTL with automatic cleanup
  • Cache Keys - Generated from search parameters for optimal hit rates

๐Ÿ“Š Performance

Benchmarks

  • First search: ~500ms (includes docset scanning)
  • Cached searches: ~50ms (memory cache hits)
  • Content extraction: +200-300ms (when requested)
  • Fuzzy matching: Minimal overhead with significant quality improvement

Optimization Tips

  • Keep server running in tmux for best performance
  • Initial searches per docset are slower (cache building)
  • Content extraction adds latency but provides much richer context
  • Memory cache provides fastest repeated access

๐Ÿ” Available Tools

Core Search Tools

Tool Description Use Case
search_dash_docs Basic documentation search with fuzzy matching General API/concept lookup
list_docsets Show all available documentation sets Discover available documentation
get_doc_content Get full content for specific documentation Deep dive into specific topics

Project-Aware Tools

Tool Description Use Case
analyze_project_context Detect project tech stack and dependencies Understand current project
get_project_relevant_docs Context-aware documentation search Find docs relevant to your project
get_implementation_guidance Best practices for specific features Implementation planning

Specialized Tools

Tool Description Use Case
get_migration_docs Version upgrade documentation Planning upgrades and migrations
get_latest_api_reference Current API docs with examples Quick reference while coding

๐Ÿšจ Troubleshooting

Common Issues

โŒ โ€œNo docsets foundโ€

# Ensure Dash is installed with docsets
ls ~/Library/Application\ Support/Dash/DocSets/
# Should show *.docset directories
# Optionally set DASH_DOCSETS_PATH if your docsets live elsewhere
# (symlinks to the default location are supported)
# When creating a symlink, point it at `~/Library/Application Support/Dash`.
# A symlink directly to the `DocSets` folder will produce a search path
# ending in `DocSets/DocSets` and no docsets will be discovered.
# The server now resolves such symlinks automatically and also corrects
# `DASH_DOCSETS_PATH` values that point at the parent `Dash` directory.

โŒ โ€œPermission errorsโ€

# Check Python environment
which python3
source ~/enhanced-dash-mcp/venv/bin/activate

โŒ โ€œImport errorsโ€

# Reinstall dependencies
cd ~/enhanced-dash-mcp
source venv/bin/activate
pip install -r requirements.txt

โŒ โ€œServer wonโ€™t startโ€

# Check if port is in use
tmux kill-session -t dash-mcp
dash-mcp-start

โŒ โ€œSlow searchesโ€

# First searches build cache - subsequent searches are much faster
# Check cache directory
ls ~/.cache/dash-mcp/

Debug Mode

# View detailed server logs
dash-mcp-logs

# Attach to server session for real-time debugging
dash-mcp-attach

๐Ÿค Contributing

Development Setup

# Clone repository
git clone <repository-url>
cd enhanced-dash-mcp

# Create development environment
python3 -m venv dev-env
source dev-env/bin/activate
pip install -r requirements.txt

# Install development dependencies
pip install pytest black flake8 mypy

Running Tests

# Unit tests
pytest tests/

# Linting and type checks
black .
flake8 .  # uses settings from .flake8
mypy .    # uses settings from mypy.ini

Adding New Features

  1. Docset Support - Add new file format extractors in ContentExtractor
  2. Search Algorithms - Enhance ranking in FuzzySearchEngine
  3. Project Detection - Extend framework detection in ProjectAwareDocumentationServer
  4. Caching Strategies - Optimize cache management in CacheManager

๐Ÿ“„ License

MIT License - see LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Dash by Kapeli for providing excellent local documentation
  • Anthropic for Claude and the MCP framework
  • Warp Terminal for innovative terminal experience
  • Fort Collins Tech Community for inspiration and feedback

๐Ÿ“ž Support

  • Issues: Open a GitHub issue for bugs or feature requests
  • Discussions: Use GitHub Discussions for questions and ideas
  • Documentation: Check the /docs directory for detailed guides

๐Ÿ—บ๏ธ Roadmap

v1.1 - Enhanced Intelligence

  • [ ] ML-powered documentation relevance scoring
  • [ ] Automatic dependency documentation downloads
  • [ ] Cross-reference linking between related docs

v1.2 - Extended Platform Support

  • [ ] VS Code extension for direct editor integration

v1.3 - Advanced Features

  • [ ] Documentation usage analytics and recommendations
  • [ ] Team collaboration features for shared documentation
  • [ ] Integration with popular documentation hosting platforms

Built with โค๏ธ in Fort Collins, CO for developers who value efficient, intelligent documentation access.

Transform your development workflow with context-aware documentation that understands your project and coding patterns.

๐Ÿ“š Further Reading

Tools

No tools

Comments