datris-mcp-server 1.2.0__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.
@@ -0,0 +1,90 @@
1
+ # sbt
2
+ # (may want to keep parts of 'project')
3
+ bin/
4
+ project/*
5
+ !project/*.sbt
6
+ target/
7
+ build/
8
+ .idea/
9
+
10
+ # IDE and build server
11
+ .bloop/
12
+ .metals/
13
+ .bsp/
14
+ project/metals.sbt
15
+
16
+ # VSCode - ignore user-specific settings
17
+ .vscode/
18
+ datrisserver/.vscode/
19
+
20
+ # Angular cache
21
+ ui/.angular
22
+
23
+ # Claude
24
+ .claude/
25
+
26
+ # eclipse
27
+ build
28
+ .classpath
29
+ .project
30
+ .settings
31
+ .worksheet
32
+
33
+ # intellij idea
34
+ *.log
35
+ *.iml
36
+ *.ipr
37
+ *.iws
38
+ .idea
39
+ .bsp
40
+
41
+ # mac
42
+ .DS_Store
43
+
44
+ # other?
45
+ .history
46
+ .scala_dependencies
47
+ .cache
48
+ .cache-main
49
+
50
+ #general
51
+ *.class
52
+ __pycache__/
53
+ *.pyc
54
+
55
+ # local secrets
56
+ .env
57
+ docs/config/ec2-ollama.md
58
+
59
+ # terraform
60
+ .terraform
61
+ .terraform/
62
+ *.hcl
63
+
64
+ # minio
65
+ minio/
66
+
67
+ # vault
68
+ vault/
69
+
70
+ # helpers
71
+ helpers/kafka-csv-loader/myenv/
72
+
73
+ helpers/preprocessor/my-env/
74
+
75
+ helpers/data-quality-rest/my-env/
76
+
77
+ helpers/topic-subscriber/my-env/
78
+
79
+ helpers/chat-vector-store/my-env/
80
+ helpers/chat-vector-store/.env
81
+
82
+ # mcp-server
83
+ mcp-server/.env
84
+ mcp-server/my-env/
85
+
86
+ # node
87
+ node_modules/
88
+
89
+ # UI build output
90
+ ui/dist/
@@ -0,0 +1,124 @@
1
+ Metadata-Version: 2.4
2
+ Name: datris-mcp-server
3
+ Version: 1.2.0
4
+ Summary: MCP server for the Datris AI Agent-Native Data Platform
5
+ Project-URL: Homepage, https://datris.ai
6
+ Project-URL: Repository, https://github.com/datris/datris-platform-oss
7
+ Project-URL: Documentation, https://github.com/datris/datris-platform-oss/blob/main/docs/mcp.md
8
+ Project-URL: Issues, https://github.com/datris/datris-platform-oss/issues
9
+ Author-email: Datris <info@datris.ai>
10
+ License: Apache-2.0
11
+ Keywords: ai-agent,data-platform,datris,mcp,model-context-protocol
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Database
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Software Development :: Libraries
22
+ Requires-Python: >=3.10
23
+ Requires-Dist: mcp[cli]
24
+ Requires-Dist: python-dotenv
25
+ Requires-Dist: requests
26
+ Requires-Dist: starlette
27
+ Requires-Dist: uvicorn
28
+ Description-Content-Type: text/markdown
29
+
30
+ # Datris MCP Server
31
+
32
+ MCP (Model Context Protocol) server for the [Datris AI Agent-Native Data Platform](https://datris.ai). Enables AI agents (Claude Desktop, Claude Code, Cursor, and custom frameworks) to natively interact with the platform — discover data, create pipelines, upload files, monitor jobs, search vector databases, query structured data, and answer questions with AI.
33
+
34
+ <!-- mcp-name: io.github.datris/datris -->
35
+
36
+ ## Install
37
+
38
+ ```bash
39
+ pip install datris-mcp-server
40
+ ```
41
+
42
+ ## Usage
43
+
44
+ ### stdio mode (Claude Desktop / Claude Code)
45
+
46
+ ```bash
47
+ PIPELINE_URL=http://localhost:8080 datris-mcp-server
48
+ ```
49
+
50
+ Or run directly:
51
+
52
+ ```bash
53
+ PIPELINE_URL=http://localhost:8080 python server.py
54
+ ```
55
+
56
+ ### SSE mode (Docker / remote agents)
57
+
58
+ ```bash
59
+ PIPELINE_URL=http://localhost:8080 datris-mcp-server --sse --port 3000
60
+ ```
61
+
62
+ ### Docker
63
+
64
+ The MCP server starts automatically with `docker compose up` in SSE mode on port 3000.
65
+
66
+ ## Configuration
67
+
68
+ ### Claude Desktop
69
+
70
+ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
71
+
72
+ ```json
73
+ {
74
+ "mcpServers": {
75
+ "datris": {
76
+ "command": "datris-mcp-server",
77
+ "env": {
78
+ "PIPELINE_URL": "http://localhost:8080"
79
+ }
80
+ }
81
+ }
82
+ }
83
+ ```
84
+
85
+ ### Claude Code
86
+
87
+ Add to `.mcp.json` in your project root:
88
+
89
+ ```json
90
+ {
91
+ "mcpServers": {
92
+ "datris": {
93
+ "command": "datris-mcp-server",
94
+ "env": {
95
+ "PIPELINE_URL": "http://localhost:8080"
96
+ }
97
+ }
98
+ }
99
+ }
100
+ ```
101
+
102
+ ## Environment Variables
103
+
104
+ | Variable | Default | Description |
105
+ |----------|---------|-------------|
106
+ | `PIPELINE_URL` | `http://localhost:8080` | Datris pipeline server URL |
107
+ | `PIPELINE_API_KEY` | (empty) | API key if pipeline has key validation enabled |
108
+
109
+ ## Tools
110
+
111
+ 30+ tools across these categories:
112
+
113
+ - **Pipeline Management** — create, list, get, delete pipelines; upload files; monitor jobs
114
+ - **Vector Search** — semantic search across Qdrant, Weaviate, Milvus, Chroma, pgvector
115
+ - **Database Query** — read-only SQL queries (PostgreSQL) and MongoDB queries
116
+ - **Metadata Discovery** — explore databases, schemas, tables, columns, collections
117
+ - **AI** — RAG-powered question answering
118
+ - **System** — health checks, version info
119
+
120
+ See the full documentation at [docs/mcp.md](https://github.com/datris/datris-platform-oss/blob/main/docs/mcp.md).
121
+
122
+ ## License
123
+
124
+ Apache 2.0
@@ -0,0 +1,95 @@
1
+ # Datris MCP Server
2
+
3
+ MCP (Model Context Protocol) server for the [Datris AI Agent-Native Data Platform](https://datris.ai). Enables AI agents (Claude Desktop, Claude Code, Cursor, and custom frameworks) to natively interact with the platform — discover data, create pipelines, upload files, monitor jobs, search vector databases, query structured data, and answer questions with AI.
4
+
5
+ <!-- mcp-name: io.github.datris/datris -->
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ pip install datris-mcp-server
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ### stdio mode (Claude Desktop / Claude Code)
16
+
17
+ ```bash
18
+ PIPELINE_URL=http://localhost:8080 datris-mcp-server
19
+ ```
20
+
21
+ Or run directly:
22
+
23
+ ```bash
24
+ PIPELINE_URL=http://localhost:8080 python server.py
25
+ ```
26
+
27
+ ### SSE mode (Docker / remote agents)
28
+
29
+ ```bash
30
+ PIPELINE_URL=http://localhost:8080 datris-mcp-server --sse --port 3000
31
+ ```
32
+
33
+ ### Docker
34
+
35
+ The MCP server starts automatically with `docker compose up` in SSE mode on port 3000.
36
+
37
+ ## Configuration
38
+
39
+ ### Claude Desktop
40
+
41
+ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
42
+
43
+ ```json
44
+ {
45
+ "mcpServers": {
46
+ "datris": {
47
+ "command": "datris-mcp-server",
48
+ "env": {
49
+ "PIPELINE_URL": "http://localhost:8080"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ ```
55
+
56
+ ### Claude Code
57
+
58
+ Add to `.mcp.json` in your project root:
59
+
60
+ ```json
61
+ {
62
+ "mcpServers": {
63
+ "datris": {
64
+ "command": "datris-mcp-server",
65
+ "env": {
66
+ "PIPELINE_URL": "http://localhost:8080"
67
+ }
68
+ }
69
+ }
70
+ }
71
+ ```
72
+
73
+ ## Environment Variables
74
+
75
+ | Variable | Default | Description |
76
+ |----------|---------|-------------|
77
+ | `PIPELINE_URL` | `http://localhost:8080` | Datris pipeline server URL |
78
+ | `PIPELINE_API_KEY` | (empty) | API key if pipeline has key validation enabled |
79
+
80
+ ## Tools
81
+
82
+ 30+ tools across these categories:
83
+
84
+ - **Pipeline Management** — create, list, get, delete pipelines; upload files; monitor jobs
85
+ - **Vector Search** — semantic search across Qdrant, Weaviate, Milvus, Chroma, pgvector
86
+ - **Database Query** — read-only SQL queries (PostgreSQL) and MongoDB queries
87
+ - **Metadata Discovery** — explore databases, schemas, tables, columns, collections
88
+ - **AI** — RAG-powered question answering
89
+ - **System** — health checks, version info
90
+
91
+ See the full documentation at [docs/mcp.md](https://github.com/datris/datris-platform-oss/blob/main/docs/mcp.md).
92
+
93
+ ## License
94
+
95
+ Apache 2.0
@@ -0,0 +1,50 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "datris-mcp-server"
7
+ version = "1.2.0"
8
+ description = "MCP server for the Datris AI Agent-Native Data Platform"
9
+ readme = "README.md"
10
+ license = {text = "Apache-2.0"}
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ {name = "Datris", email = "info@datris.ai"}
14
+ ]
15
+ keywords = ["mcp", "datris", "data-platform", "ai-agent", "model-context-protocol"]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Topic :: Software Development :: Libraries",
25
+ "Topic :: Database",
26
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
+ ]
28
+ dependencies = [
29
+ "mcp[cli]",
30
+ "requests",
31
+ "python-dotenv",
32
+ "uvicorn",
33
+ "starlette",
34
+ ]
35
+
36
+ [project.urls]
37
+ Homepage = "https://datris.ai"
38
+ Repository = "https://github.com/datris/datris-platform-oss"
39
+ Documentation = "https://github.com/datris/datris-platform-oss/blob/main/docs/mcp.md"
40
+ Issues = "https://github.com/datris/datris-platform-oss/issues"
41
+
42
+ [project.scripts]
43
+ datris-mcp-server = "server:main"
44
+
45
+ [tool.hatch.build.targets.wheel]
46
+ only-include = ["server.py"]
47
+ sources = ["."]
48
+
49
+ [tool.hatch.build.targets.sdist]
50
+ only-include = ["server.py", "pyproject.toml", "README.md"]