elasticsearch-mcp-server 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of elasticsearch-mcp-server might be problematic. Click here for more details.
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/PKG-INFO +1 -1
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/pyproject.toml +1 -1
- elasticsearch_mcp_server-0.1.3/src/elasticsearch_mcp_server/__init__.py +10 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/src/elasticsearch_mcp_server/server.py +4 -2
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/uv.lock +1 -1
- elasticsearch_mcp_server-0.1.2/src/elasticsearch_mcp_server/__init__.py +0 -5
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/.env +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/.gitignore +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/.python-version +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/LICENSE +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/README.md +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/docker-compose.yml +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/src/elasticsearch_mcp_server/es_client.py +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/src/elasticsearch_mcp_server/tools/cluster.py +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/src/elasticsearch_mcp_server/tools/document.py +0 -0
- {elasticsearch_mcp_server-0.1.2 → elasticsearch_mcp_server-0.1.3}/src/elasticsearch_mcp_server/tools/index.py +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
import logging
|
|
3
3
|
from fastmcp import FastMCP
|
|
4
|
-
from
|
|
4
|
+
from .tools.index import IndexTools
|
|
5
|
+
from .tools.document import DocumentTools
|
|
6
|
+
from .tools.cluster import ClusterTools
|
|
5
7
|
|
|
6
8
|
class ElasticsearchMCPServer:
|
|
7
9
|
def __init__(self):
|
|
@@ -34,6 +36,6 @@ class ElasticsearchMCPServer:
|
|
|
34
36
|
"""Run the MCP server."""
|
|
35
37
|
self.mcp.run()
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
def main():
|
|
38
40
|
server = ElasticsearchMCPServer()
|
|
39
41
|
server.run()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|