Skip to main content

A comprehensive MCP server for AI knowledge management with Elasticsearch, file operations, and version control

Project description

Elasticsearch MCP Server ๐Ÿ”

The complete knowledge management solution
Powerful Model Context Protocol server for Elasticsearch integration with comprehensive file management and version control.

Python Version MCP Compatible License: MIT

๐Ÿš€ What is Elasticsearch MCP Server?

The most comprehensive MCP server that transforms your AI assistant into a powerful knowledge management system. The key advantage? It combines everything you needโ€”Elasticsearch search, file operations, document validation, and version control in one unified solution.

๐Ÿ”‘ Complete Knowledge Management:

  • โœ… Elasticsearch Integration: Full-featured search, indexing, and document management
  • โœ… File System Control: Comprehensive file operations with cross-platform support
  • โœ… Document Validation: Schema-enforced document structure with auto-templates
  • โœ… Version Control: Git and SVN support with intelligent file tracking
  • โœ… Security First: Sandboxed operations with configurable restrictions
  • โœ… Production Ready: Battle-tested with comprehensive error handling

โœจ Key Benefits:

  • ๐ŸŽฏ 28 Powerful Tools: Everything from search to version control
  • ๐Ÿ”„ Universal AI Support: Works with Claude, ChatGPT, Cursor, and any MCP-compatible AI
  • ๐Ÿ“Š Smart Document Management: Auto-validation, templates, and structured data
  • ๐Ÿ›ก๏ธ Enterprise Security: Path validation, access controls, and audit trails
  • โšก Zero Dependencies: Optional Elasticsearch - works standalone for file operations

๐ŸŒ AI Assistant Support

Works with any MCP-compatible AI assistant:

  • โœ… Claude Desktop
  • โœ… ChatGPT Plus (with MCP support)
  • โœ… Cursor IDE
  • โœ… Windsurf
  • โœ… VS Code (with MCP extension)
  • โœ… Any MCP client

Perfect for developers who want to automate knowledge management and teams who need structured document workflows!

๐ŸŽฌ What You Can Do

Real workflows you can try today:

๐Ÿ“š Knowledge Management

  • "Search all documents for information about API authentication and create a comprehensive guide"
  • "Index this technical document with proper categorization and tags"
  • "Find all documents related to deployment and generate a deployment checklist"
  • "Create a new document template for API documentation with required fields"

๐Ÿ“ File Operations & Organization

  • "Organize all markdown files by category and move them to appropriate directories"
  • "Read all configuration files and create a settings summary document"
  • "Find duplicate files in the project and list them for cleanup"
  • "Create a project structure document listing all important files"

๐Ÿ”„ Version Control & History

  • "Setup Git repository for this knowledge base and commit all current documents"
  • "Check what changes were made to the user manual in the last version"
  • "Commit these updated API docs with a descriptive message"
  • "Show me the previous version of this configuration file"

๐Ÿค– Development & Documentation

  • "Index all code documentation and make it searchable"
  • "Create a changelog from Git commit history"
  • "Validate all documents follow our schema requirements"
  • "Generate project documentation from README files"

๐Ÿ” Advanced Search & Analysis

  • "Search across all documents and files for security-related information"
  • "Find all TODO comments in code files and create a task list"
  • "Analyze document metadata and generate a content report"
  • "Search for outdated information and flag it for review"

โšก Quick Start

1. Installation

๐ŸŽ‰ NEW: Now Available on PyPI!

# Super easy installation with uvx
uvx agent-knowledge-mcp

# Or install as a tool for persistent use
uv tool install agent-knowledge-mcp

Alternative installation methods:

# Install from GitHub (latest development)
uvx --from git+https://github.com/itshare4u/AgentKnowledgeMCP.git agent-knowledge-mcp

# Traditional installation
git clone https://github.com/itshare4u/AgentKnowledgeMCP.git
cd AgentKnowledgeMCP
pip install -r requirements.txt

2. Configuration

# Copy and edit configuration
cp src/config.json.example src/config.json
nano src/config.json

3. Connect to Your AI Assistant

For Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "agent-knowledge": {
      "command": "uvx",
      "args": ["agent-knowledge-mcp"]
    }
  }
}

Alternative configurations:

{
  "mcpServers": {
    "agent-knowledge-github": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/itshare4u/AgentKnowledgeMCP.git", "agent-knowledge-mcp"]
    }
  }
}

For Cursor, add to settings:

{
  "cursor.mcp.servers": [
    {
      "name": "agent-knowledge",
      "command": "uvx",
      "args": ["agent-knowledge-mcp"]
    }
  ]
}

Alternative (if installed manually):

{
  "cursor.mcp.servers": [
    {
      "name": "agent-knowledge",
      "command": "python3",
      "args": ["/path/to/AgentKnowledgeMCP/src/server.py"],
      "workingDirectory": "/path/to/AgentKnowledgeMCP"
    }
  ]
}

For VS Code, install MCP extension and configure:

{
  "mcp.servers": {
    "agent-knowledge": {
      "command": "uvx",
      "args": ["agent-knowledge-mcp"]
    }
  }
}

Alternative (if installed manually):

{
  "mcp.servers": {
    "agent-knowledge": {
      "command": "python3",
      "args": ["/path/to/AgentKnowledgeMCP/src/server.py"],
      "cwd": "/path/to/AgentKnowledgeMCP"
    }
  }
}

For Windsurf, add to ~/.windsurf/config.json:

{
  "mcp": {
    "servers": {
      "agent-knowledge": {
        "command": "uvx",
        "args": ["agent-knowledge-mcp"]
      }
    }
  }
}

Alternative (if installed manually):

{
  "mcp": {
    "servers": {
      "agent-knowledge": {
        "command": "python3",
        "args": ["/path/to/AgentKnowledgeMCP/src/server.py"],
        "env": {
          "PYTHONPATH": "/path/to/AgentKnowledgeMCP"
        }
      }
    }
  }
}

๏ฟฝ Quick VS Code Installation

For quick installation in VS Code, click the installation buttons below:

Install with UV in VS Code Install with UV in VS Code Insiders

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P (or Cmd + Shift + P on macOS) and typing Preferences: Open Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is needed when using the mcp.json file.

UV Installation (Recommended)

{
  "mcp": {
    "servers": {
      "agent-knowledge": {
        "command": "uvx",
        "args": ["agent-knowledge-mcp"]
      }
    }
  }
}

Manual Installation

{
  "mcp": {
    "inputs": [
      {
        "type": "promptString",
        "id": "server_path",
        "description": "Path to AgentKnowledgeMCP server.py",
        "default": "${workspaceFolder}/src/server.py"
      }
    ],
    "servers": {
      "agent-knowledge": {
        "command": "python3",
        "args": [
          "${input:server_path}"
        ],
        "cwd": "${workspaceFolder}"
      }
    }
  }
}

๏ฟฝ๐Ÿ› ๏ธ Capabilities

Elasticsearch MCP Server provides 28 powerful tools across 4 categories:

๐Ÿ” Elasticsearch Operations (9 tools)

  • Smart Search - Multi-field queries with boosting and relevance scoring
  • Document Management - Index, retrieve, update, delete with validation
  • Index Administration - Create, configure, manage Elasticsearch indices
  • Schema Validation - Enforce document structure and data types
  • Template Generation - Auto-create document templates with required fields

๐Ÿ“ File System Management (11 tools)

  • File Operations - Read, write, append, delete, move, copy with safety checks
  • Directory Management - Create, list, navigate directory structures
  • Path Intelligence - Relative/absolute path conversion and validation
  • File Discovery - Search files by name, content, or metadata
  • Cross-Platform - Windows, macOS, Linux compatibility

๐ŸŽ›๏ธ System Administration (5 tools)

  • Configuration Management - Dynamic config reload and validation
  • Security Controls - Access restrictions and path validation
  • Health Monitoring - System status and Elasticsearch connectivity
  • Auto-Setup - Intelligent Elasticsearch configuration
  • Environment Management - Directory permissions and structure

๐Ÿ”„ Version Control (3 tools)

  • Repository Setup - Git/SVN initialization with best practices
  • File Tracking - Intelligent commit with change detection
  • History Access - Retrieve any previous version of files
  • Multi-VCS - Support for both Git and SVN workflows

๐Ÿ’ฌ Example Prompts to Try

Once everything is set up, try asking your AI:

Knowledge Discovery:

"Search all indexed documents for information about user authentication and summarize the key points"

Document Creation:

"Create a new API documentation template and index it with proper categorization"

File Management:

"Find all configuration files in the project and create a backup in the configs directory"

Version Control:

"Setup version control for this knowledge base and commit all current documents with proper organization"

Content Analysis:

"Analyze all markdown files for outdated information and create a list of files that need updates"

Project Documentation:

"Read all README files in subdirectories and create a comprehensive project overview document"

๐Ÿ—๏ธ Architecture

AgentKnowledgeMCP/
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ server.py                    # Main MCP server
โ”‚   โ”œโ”€โ”€ config.json                  # Configuration
โ”‚   โ”œโ”€โ”€ config.json.example          # Configuration template
โ”‚   โ”œโ”€โ”€ tools.py                     # Tool definitions (28 tools)
โ”‚   โ”œโ”€โ”€ elasticsearch_handlers.py    # Elasticsearch operations
โ”‚   โ”œโ”€โ”€ file_handlers.py            # File system operations
โ”‚   โ”œโ”€โ”€ admin_handlers.py           # Admin operations
โ”‚   โ”œโ”€โ”€ version_control_handlers.py # VCS operations
โ”‚   โ”œโ”€โ”€ document_schema.py          # Document validation
โ”‚   โ”œโ”€โ”€ elasticsearch_client.py     # ES client management
โ”‚   โ””โ”€โ”€ security.py                 # Security & validation
โ”œโ”€โ”€ tests/
โ”‚   โ”œโ”€โ”€ run_all_tests.py            # Test runner
โ”‚   โ”œโ”€โ”€ test_file_paths.py          # File operations tests
โ”‚   โ”œโ”€โ”€ test_validation.py          # Document validation tests
โ”‚   โ”œโ”€โ”€ test_version_control.py     # VCS comprehensive tests
โ”‚   โ”œโ”€โ”€ test_simple_vcs.py          # VCS demo tests
โ”‚   โ”œโ”€โ”€ demo_agent_workflow.py      # Complete workflow demo
โ”‚   โ”œโ”€โ”€ quick_test.py               # Quick functionality check
โ”‚   โ””โ”€โ”€ README.md                   # Test documentation
โ”œโ”€โ”€ .knowledges/                    # Knowledge base storage
โ”œโ”€โ”€ setup.py                       # Quick setup script
โ”œโ”€โ”€ requirements.txt                # Python dependencies
โ”œโ”€โ”€ CHANGELOG.md                    # Version history
โ””โ”€โ”€ README.md                      # This file
graph TD
    A[AI Assistant] --> B[MCP Server]
    B --> C[Elasticsearch Client]
    B --> D[File System Handler]
    B --> E[Version Control Handler]
    B --> F[Document Validator]
    
    C --> G[Elasticsearch Cluster]
    D --> H[Local File System]
    E --> I[Git/SVN Repository]
    F --> J[Schema Validation]

Modern, Modular Design:

  1. MCP Protocol - Standard communication with AI assistants
  2. Elasticsearch Integration - Full-featured search and indexing
  3. File System Safety - Sandboxed operations with validation
  4. Version Control - Git/SVN support with intelligent workflows
  5. Document Validation - Schema enforcement and template generation

๐Ÿ”’ Security & Privacy

Enterprise-grade security:

  • โœ… Sandboxed Operations - All file operations restricted to configured directories
  • โœ… Path Validation - Prevent directory traversal and unauthorized access
  • โœ… Access Controls - Configurable permissions and restrictions
  • โœ… Audit Trails - Full logging of operations and changes
  • โœ… No Cloud Dependencies - Everything runs locally

Configuration Example:

{
  "security": {
    "allowed_base_directory": "/your/safe/directory",
    "restrict_file_operations": true,
    "log_all_operations": true
  }
}

๐Ÿ“Š Tool Reference

Category Count Tools
Elasticsearch 9 search, index_document, create_index, get_document, delete_document, list_indices, delete_index, validate_document_schema, create_document_template
File System 11 read_file, write_file, append_file, delete_file, move_file, copy_file, list_directory, create_directory, delete_directory, file_info, search_files
Administration 5 get_allowed_directory, set_allowed_directory, reload_config, setup_elasticsearch, elasticsearch_status
Version Control 3 setup_version_control, commit_file, get_previous_file_version

Total: 28 tools for comprehensive knowledge management!

๐Ÿงช Testing & Validation

Comprehensive test suite included:

# Run all tests
python3 tests/run_all_tests.py

# Individual tests
python3 tests/test_file_paths.py       # File operations
python3 tests/test_validation.py       # Document validation  
python3 tests/test_version_control.py  # Version control
python3 tests/test_simple_vcs.py       # VCS demo

# Demo workflows
python3 tests/demo_agent_workflow.py   # Complete workflow
python3 tests/quick_test.py            # Quick check

Quality Assurance:

  • โœ… Unit Tests - All core functionality tested
  • โœ… Integration Tests - End-to-end workflow validation
  • โœ… Error Handling - Comprehensive error scenarios covered
  • โœ… Cross-Platform - Tested on Windows, macOS, Linux

๐Ÿค Contributing

Love to have your help making Elasticsearch MCP Server even better!

Quick Development Setup

git clone https://github.com/yourusername/AgentKnowledgeMCP.git
cd AgentKnowledgeMCP

# Install dependencies
pip install -r requirements.txt

# Run tests
python3 test_file_paths.py

# Start development server
python3 src/server.py

Ways to Contribute

  • ๐Ÿ› Report bugs via GitHub Issues
  • ๐Ÿ’ก Suggest features for new tools or capabilities
  • ๐Ÿ”ง Add new tools or improve existing ones
  • ๐Ÿ“– Improve documentation and examples
  • ๐Ÿงช Test with different AI assistants and share results

Development Guidelines

  • Modular Design - Each tool category in separate handlers
  • Comprehensive Testing - Test all new functionality
  • Security First - Validate all inputs and file operations
  • Cross-Platform - Ensure compatibility across operating systems

๐Ÿ“ฆ Installation Options

โœจ Easy Installation with UV (Recommended):

# Install directly from GitHub
uvx --from git+https://github.com/itshare4u/AgentKnowledgeMCP.git agent-knowledge-mcp

# After package is published to PyPI:
uvx agent-knowledge-mcp

๐Ÿ”ง Manual Installation:

git clone https://github.com/itshare4u/AgentKnowledgeMCP.git
cd AgentKnowledgeMCP
python3 -m pip install -e .

๐Ÿ“‹ Requirements:

  • Python 3.8+
  • Elasticsearch (optional - server works without it for file operations)
  • Git (for version control features)

๐Ÿš€ Publishing to PyPI

For maintainers who want to publish this package:

# Build the package
uv build

# Publish to Test PyPI first
uv publish --repository testpypi --token <your-test-pypi-token>

# Test installation from Test PyPI
uvx --index https://test.pypi.org/simple/ agent-knowledge-mcp

# Publish to main PyPI
uv publish --token <your-pypi-token>

After publishing, users can install with:

uvx agent-knowledge-mcp

๐Ÿ“ License

MIT License - see LICENSE for details.


Ready to supercharge your AI assistant with comprehensive knowledge management? Get started today! ๐Ÿš€

Transform your AI into a powerful knowledge management system with Elasticsearch search, intelligent file operations, and version control - all in one unified MCP server.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agent_knowledge_mcp-1.0.1.tar.gz (29.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agent_knowledge_mcp-1.0.1-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file agent_knowledge_mcp-1.0.1.tar.gz.

File metadata

  • Download URL: agent_knowledge_mcp-1.0.1.tar.gz
  • Upload date:
  • Size: 29.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.18

File hashes

Hashes for agent_knowledge_mcp-1.0.1.tar.gz
Algorithm Hash digest
SHA256 98160b30c2a61b02484a3557649a74a6e542997fe5ff51adbc2993229ee4cd60
MD5 91c77306afe490bfe5c39b069c770622
BLAKE2b-256 1e5fb75c820534c03e641e266a4419fbea4e0054a1cfd83703a6135773d98501

See more details on using hashes here.

File details

Details for the file agent_knowledge_mcp-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for agent_knowledge_mcp-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 02320eac99aa479459d36180f8d38491fb315dfe260d41bb5e242dbd077073ba
MD5 3f84d90aecc36e14ade4ef68f2af5195
BLAKE2b-256 fcd731a752883fec01ed27908afa2c4085b4676946d7529196f7ae71a68a22da

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page