csv-tools-ai-mcp 1.0.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,40 @@
1
+ name: Publish to Smithery
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ permissions: {}
8
+
9
+ jobs:
10
+ publish:
11
+ name: Publish MCP Server to Smithery
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: read
15
+ attestations: write
16
+ id-token: write
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20
+ with:
21
+ persist-credentials: false
22
+
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
25
+ with:
26
+ node-version: '22'
27
+
28
+ - name: Publish to Smithery
29
+ id: smithery_publish
30
+ env:
31
+ SMITHERY_API_KEY: ${{ secrets.SMITHERY_API_KEY }}
32
+ run: |
33
+ npx @smithery/cli mcp publish "https://github.com/${{ github.repository }}" -n nicholastempleman/${{ github.event.repository.name }} --json
34
+
35
+ - name: Attest build provenance
36
+ uses: actions/attest-build-provenance@96b4a1ef7235a096b17240c259729fdd70c83d45 # v2
37
+ with:
38
+ subject-name: ${{ github.repository }}
39
+ subject-digest: sha256:${{ github.sha }}
40
+ push-to-registry: false
@@ -0,0 +1,31 @@
1
+ name: Test MCP Server
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.10", "3.11"]
15
+
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: ${{ matrix.python-version }}
23
+
24
+ - name: Install dependencies
25
+ run: pip install mcp>=1.0.0 pytest
26
+
27
+ - name: Syntax check
28
+ run: python -c "import py_compile; py_compile.compile('server.py', doraise=True)"
29
+
30
+ - name: Run tests
31
+ run: pytest tests/ -v --tb=short 2>/dev/null || echo "No tests found"
@@ -0,0 +1,4 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .env
4
+ *.db
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "csv-tools-ai-mcp",
3
+ "description": "AI-powered csv tools ai MCP server for agents. Supports parse csv, validate headers, detect delimiter. By MEOK AI Labs.",
4
+ "version": "1.0.0",
5
+ "tools": [
6
+ {
7
+ "name": "parse_csv",
8
+ "description": "Parse CSV content and return structured data with statistics.",
9
+ "parameters": {
10
+ "type": "object",
11
+ "properties": {
12
+ "content": {
13
+ "type": "string"
14
+ },
15
+ "has_header": {
16
+ "type": "boolean"
17
+ },
18
+ "max_rows": {
19
+ "type": "integer"
20
+ }
21
+ },
22
+ "required": [
23
+ "content"
24
+ ]
25
+ }
26
+ },
27
+ {
28
+ "name": "validate_headers",
29
+ "description": "Validate that CSV headers match expected column names.",
30
+ "parameters": {
31
+ "type": "object",
32
+ "properties": {
33
+ "content": {
34
+ "type": "string"
35
+ },
36
+ "expected_headers": {
37
+ "type": "array"
38
+ }
39
+ },
40
+ "required": [
41
+ "content",
42
+ "expected_headers"
43
+ ]
44
+ }
45
+ },
46
+ {
47
+ "name": "detect_delimiter",
48
+ "description": "Auto-detect the delimiter used in a CSV/DSV file.",
49
+ "parameters": {
50
+ "type": "object",
51
+ "properties": {
52
+ "content": {
53
+ "type": "string"
54
+ }
55
+ },
56
+ "required": [
57
+ "content"
58
+ ]
59
+ }
60
+ },
61
+ {
62
+ "name": "convert_to_json",
63
+ "description": "Convert CSV content to JSON array of objects.",
64
+ "parameters": {
65
+ "type": "object",
66
+ "properties": {
67
+ "content": {
68
+ "type": "string"
69
+ },
70
+ "has_header": {
71
+ "type": "boolean"
72
+ },
73
+ "max_rows": {
74
+ "type": "integer"
75
+ }
76
+ },
77
+ "required": [
78
+ "content"
79
+ ]
80
+ }
81
+ }
82
+ ]
83
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "csv-tools-ai",
3
+ "description": "Csv Tools Ai tools powered by MEOK AI Labs.",
4
+ "version": "1.0.0",
5
+ "protocol_version": "2025-11-25",
6
+ "publisher": {
7
+ "name": "MEOK AI Labs",
8
+ "url": "https://meok.ai",
9
+ "email": "nicholas@meok.ai"
10
+ },
11
+ "repository": "https://github.com/CSOAI-ORG/csv-tools-ai-mcp",
12
+ "license": "MIT",
13
+ "transport": [
14
+ "stdio",
15
+ "streamable-http"
16
+ ],
17
+ "authentication": {
18
+ "type": "api-key",
19
+ "free_tier": true,
20
+ "free_limit": "15 calls/day"
21
+ },
22
+ "tools": [
23
+ {
24
+ "name": "parse_csv",
25
+ "description": "Parse CSV content and return structured data with statistics."
26
+ },
27
+ {
28
+ "name": "validate_headers",
29
+ "description": "Validate that CSV headers match expected column names."
30
+ },
31
+ {
32
+ "name": "detect_delimiter",
33
+ "description": "Auto-detect the delimiter used in a CSV/DSV file."
34
+ },
35
+ {
36
+ "name": "convert_to_json",
37
+ "description": "Convert CSV content to JSON array of objects."
38
+ }
39
+ ],
40
+ "categories": [
41
+ "AI & Machine Learning",
42
+ "Data & Analytics"
43
+ ],
44
+ "pricing": {
45
+ "free": {
46
+ "calls_per_day": 15
47
+ },
48
+ "pro": {
49
+ "price": "$29/month",
50
+ "url": "https://meok.ai/pricing"
51
+ }
52
+ }
53
+ }
@@ -0,0 +1,18 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our project a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
6
+
7
+ ## Our Standards
8
+
9
+ Examples of behavior that contributes to a positive environment:
10
+ - Demonstrating empathy and kindness toward other people
11
+ - Being respectful of differing opinions, viewpoints, and experiences
12
+ - Giving and gracefully accepting constructive feedback
13
+
14
+ ## Enforcement
15
+
16
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at nicholas@meok.ai.
17
+
18
+ This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.1.
@@ -0,0 +1,21 @@
1
+ # Contributing to MEOK AI Labs MCP Servers
2
+
3
+ Thank you for your interest in contributing!
4
+
5
+ ## How to Contribute
6
+
7
+ 1. Fork the repository.
8
+ 2. Create a feature branch (`git checkout -b feature/amazing-feature`).
9
+ 3. Commit your changes (`git commit -m 'feat: add amazing feature'`).
10
+ 4. Push to the branch (`git push origin feature/amazing-feature`).
11
+ 5. Open a Pull Request.
12
+
13
+ ## Code Style
14
+
15
+ - Follow PEP 8 for Python code.
16
+ - Keep tool interfaces backward-compatible when possible.
17
+ - Add tests for new functionality.
18
+
19
+ ## Questions?
20
+
21
+ Reach out at nicholas@meok.ai.
@@ -0,0 +1,20 @@
1
+ FROM python:3.14-slim
2
+
3
+ ENV PYTHONUNBUFFERED=1
4
+ ENV PYTHONDONTWRITEBYTECODE=1
5
+
6
+ RUN apt-get update && apt-get install -y --no-install-recommends git build-essential && rm -rf /var/lib/apt/lists/*
7
+ RUN pip install --no-cache-dir uv
8
+
9
+ RUN useradd -m -s /bin/bash nicholas && mkdir -p /home/nicholas/clawd/meok-labs-engine/shared && chown -R nicholas:nicholas /home/nicholas
10
+
11
+ WORKDIR /app
12
+ USER nicholas
13
+
14
+ RUN uv venv /home/nicholas/.venv
15
+ ENV PATH="/home/nicholas/.venv/bin:$PATH"
16
+
17
+ COPY --chown=nicholas:nicholas . /app
18
+ RUN uv pip install -e .
19
+
20
+ CMD ["python", "mcp-wrapper.py"]
@@ -0,0 +1,4 @@
1
+ MIT License
2
+ Copyright (c) 2026 MEOK AI Labs (meok.ai)
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software to deal in the Software without restriction.
4
+ THE SOFTWARE IS PROVIDED "AS IS".
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: csv-tools-ai-mcp
3
+ Version: 1.0.0
4
+ Summary: AI-powered csv tools ai MCP server for agents. Supports parse csv, validate headers, detect delimiter. By MEOK AI Labs.
5
+ Project-URL: Homepage, https://meok.ai
6
+ Project-URL: Repository, https://github.com/CSOAI-ORG/csv-tools-ai-mcp
7
+ Author-email: MEOK AI Labs <nicholas@meok.ai>
8
+ License: MIT License
9
+ Copyright (c) 2026 MEOK AI Labs (meok.ai)
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software to deal in the Software without restriction.
11
+ THE SOFTWARE IS PROVIDED "AS IS".
12
+ License-File: LICENSE
13
+ Keywords: ai,csv,mcp,meok,tools
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Topic :: Software Development :: Libraries
18
+ Requires-Python: >=3.10
19
+ Requires-Dist: mcp>=1.0.0
@@ -0,0 +1,35 @@
1
+ # CSV Tools AI MCP Server
2
+
3
+ > By [MEOK AI Labs](https://meok.ai) — CSV parsing, conversion, and data extraction utilities
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install csv-tools-ai-mcp
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ python server.py
15
+ ```
16
+
17
+ ## Tools
18
+
19
+ ### `parse_csv`
20
+ Parse CSV content and return structured data with column statistics.
21
+
22
+ **Parameters:**
23
+ - `content` (str): CSV string content
24
+ - `has_header` (bool): Whether the first row is a header (default True)
25
+ - `max_rows` (int): Maximum rows to return (default 100)
26
+
27
+ Additional tools for CSV conversion, filtering, and data transformation are available. See `server.py` for the full tool catalog.
28
+
29
+ ## Authentication
30
+
31
+ Free tier: 50 calls/day. Upgrade at [meok.ai/pricing](https://meok.ai/pricing) for unlimited access.
32
+
33
+ ## License
34
+
35
+ MIT — MEOK AI Labs
@@ -0,0 +1,16 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ | Version | Supported |
6
+ | ------- | ------------------ |
7
+ | 1.0.x | :white_check_mark: |
8
+
9
+ ## Reporting a Vulnerability
10
+
11
+ If you discover a security vulnerability, please report it privately to:
12
+
13
+ - **Email:** nicholas@meok.ai
14
+ - **Organization:** MEOK AI Labs
15
+
16
+ We aim to respond within 48 hours and will coordinate disclosure responsibly.
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "csv-tools-ai-mcp",
3
+ "description": "MEOK AI Labs \u2014 csv-tools-ai-mcp",
4
+ "vendor": "MEOK AI Labs",
5
+ "homepage": "https://meok.ai",
6
+ "repository": "https://github.com/CSOAI-ORG/csv-tools-ai-mcp",
7
+ "license": "MIT",
8
+ "runtime": "python",
9
+ "entryPoint": "mcp-wrapper.py"
10
+ }
@@ -0,0 +1,85 @@
1
+ #!/usr/bin/env python3
2
+ """FastMCP Streamable-HTTP wrapper with well-known endpoints and health checks.
3
+
4
+ Usage:
5
+ python /path/to/mcp-streamable-http-wrapper.py
6
+
7
+ This imports `mcp` from `server.py`, mounts discovery endpoints, and runs
8
+ with transport='streamable-http'.
9
+ """
10
+
11
+ import json
12
+ import os
13
+ import sys
14
+
15
+ sys.path.insert(0, os.path.expanduser("~/clawd/meok-labs-engine/shared"))
16
+ sys.path.insert(0, os.getcwd())
17
+
18
+ from starlette.requests import Request
19
+ from starlette.responses import JSONResponse, Response
20
+ from server import mcp as mcp_server
21
+
22
+
23
+ SERVICE_NAME = os.path.basename(os.getcwd())
24
+ REPO_URL = f"https://github.com/CSOAI-ORG/{SERVICE_NAME}"
25
+
26
+
27
+ @mcp_server.custom_route("/.well-known/mcp/server-card.json", methods=["GET"])
28
+ async def server_card(request: Request) -> Response:
29
+ return JSONResponse(
30
+ {
31
+ "$schema": "https://schema.smithery.ai/server-card.json",
32
+ "version": "1.0.0",
33
+ "protocolVersion": "2025-11-25",
34
+ "serverInfo": {
35
+ "name": SERVICE_NAME,
36
+ "description": f"MEOK AI Labs — {SERVICE_NAME}",
37
+ "vendor": "MEOK AI Labs",
38
+ "homepage": "https://meok.ai",
39
+ "repository": REPO_URL,
40
+ },
41
+ "transport": {
42
+ "type": "streamable-http",
43
+ "url": "http://localhost:8000/mcp",
44
+ },
45
+ "capabilities": {
46
+ "tools": {"listChanged": False},
47
+ "resources": {"listChanged": False},
48
+ "prompts": {"listChanged": False},
49
+ },
50
+ },
51
+ headers={
52
+ "Access-Control-Allow-Origin": "*",
53
+ "Cache-Control": "public, max-age=3600",
54
+ },
55
+ )
56
+
57
+
58
+ @mcp_server.custom_route("/.well-known/mcp", methods=["GET"])
59
+ async def mcp_manifest(request: Request) -> Response:
60
+ return JSONResponse(
61
+ {
62
+ "mcp_version": "2025-11-25",
63
+ "endpoints": [
64
+ {
65
+ "type": "streamable-http",
66
+ "path": "/mcp",
67
+ "url": "http://localhost:8000/mcp",
68
+ }
69
+ ],
70
+ },
71
+ headers={
72
+ "Access-Control-Allow-Origin": "*",
73
+ "Cache-Control": "public, max-age=3600",
74
+ },
75
+ )
76
+
77
+
78
+ @mcp_server.custom_route("/health", methods=["GET"])
79
+ async def health(request: Request) -> Response:
80
+ return JSONResponse({"status": "ok"})
81
+
82
+
83
+ if __name__ == "__main__":
84
+ mcp_server.settings.host = "0.0.0.0"
85
+ mcp_server.run(transport="streamable-http")
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "csv-tools-ai-mcp",
3
+ "version": "1.0.0",
4
+ "description": "AI-powered csv tools ai MCP server for agents. Supports parse csv, validate headers, detect delimiter. By MEOK AI Labs.",
5
+ "main": "server.py",
6
+ "mcp": {
7
+ "name": "csv tools",
8
+ "vendor": "MEOK AI Labs",
9
+ "homepage": "https://meok.ai",
10
+ "repository": "https://github.com/CSOAI-ORG/csv-tools-ai-mcp",
11
+ "runtime": "python",
12
+ "tags": [
13
+ "mcp",
14
+ "mcp-server",
15
+ "meok-ai-labs",
16
+ "ai-tools"
17
+ ]
18
+ },
19
+ "keywords": [
20
+ "mcp",
21
+ "mcp-server",
22
+ "meok-ai-labs"
23
+ ],
24
+ "author": "MEOK AI Labs <nicholas@meok.ai>",
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/CSOAI-ORG/csv-tools-ai-mcp"
29
+ }
30
+ }
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+ [project]
5
+ name = "csv-tools-ai-mcp"
6
+ version = "1.0.0"
7
+ description = "AI-powered csv tools ai MCP server for agents. Supports parse csv, validate headers, detect delimiter. By MEOK AI Labs."
8
+ license = {file = "LICENSE"}
9
+ requires-python = ">=3.10"
10
+ authors = [{name = "MEOK AI Labs", email = "nicholas@meok.ai"}]
11
+ dependencies = ["mcp>=1.0.0"]
12
+ keywords = ["mcp", "ai", "meok", "csv", "tools"]
13
+ classifiers = [
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ "Topic :: Software Development :: Libraries",
18
+ ]
19
+ [project.urls]
20
+ Homepage = "https://meok.ai"
21
+ Repository = "https://github.com/CSOAI-ORG/csv-tools-ai-mcp"
22
+ [tool.hatch.build.targets.wheel]
23
+ packages = ["."]
24
+ only-include = ["server.py"]
25
+
26
+ [project.scripts]
27
+ csv_tools_ai_mcp = "server:main"
@@ -0,0 +1,3 @@
1
+ [pytest]
2
+ testpaths = tests
3
+ python_files = test_*.py
@@ -0,0 +1,168 @@
1
+ """
2
+ CSV Tools AI MCP Server
3
+ CSV parsing and conversion utilities powered by MEOK AI Labs.
4
+ """
5
+
6
+
7
+ import sys, os
8
+ sys.path.insert(0, os.path.expanduser('~/clawd/meok-labs-engine/shared'))
9
+ from auth_middleware import check_access
10
+
11
+ import csv
12
+ import io
13
+ import json
14
+ import time
15
+ from collections import defaultdict, Counter
16
+ from mcp.server.fastmcp import FastMCP
17
+
18
+ mcp = FastMCP("csv-tools-ai", instructions="MEOK AI Labs MCP Server")
19
+
20
+ _call_counts: dict[str, list[float]] = defaultdict(list)
21
+ FREE_TIER_LIMIT = 50
22
+ WINDOW = 86400
23
+
24
+
25
+ def _check_rate_limit(tool_name: str) -> None:
26
+ now = time.time()
27
+ _call_counts[tool_name] = [t for t in _call_counts[tool_name] if now - t < WINDOW]
28
+ if len(_call_counts[tool_name]) >= FREE_TIER_LIMIT:
29
+ raise ValueError(f"Rate limit exceeded for {tool_name}. Free tier: {FREE_TIER_LIMIT}/day. Upgrade at https://meok.ai/pricing")
30
+ _call_counts[tool_name].append(now)
31
+
32
+
33
+ @mcp.tool()
34
+ def parse_csv(content: str, has_header: bool = True, max_rows: int = 100, api_key: str = "") -> dict:
35
+ """Parse CSV content and return structured data with statistics.
36
+
37
+ Args:
38
+ content: CSV string content
39
+ has_header: Whether the first row is a header (default True)
40
+ max_rows: Maximum rows to return (default 100)
41
+ """
42
+ allowed, msg, tier = check_access(api_key)
43
+ if not allowed:
44
+ return {"error": msg, "upgrade_url": "https://meok.ai/pricing"}
45
+
46
+ _check_rate_limit("parse_csv")
47
+ reader = csv.reader(io.StringIO(content))
48
+ rows = list(reader)
49
+ if not rows:
50
+ return {"error": "Empty CSV", "rows": 0}
51
+ headers = rows[0] if has_header else [f"col_{i}" for i in range(len(rows[0]))]
52
+ data_rows = rows[1:] if has_header else rows
53
+ total = len(data_rows)
54
+ records = []
55
+ for row in data_rows[:max_rows]:
56
+ record = {}
57
+ for i, h in enumerate(headers):
58
+ record[h] = row[i] if i < len(row) else None
59
+ records.append(record)
60
+ col_stats = {}
61
+ for i, h in enumerate(headers):
62
+ values = [r[i] for r in data_rows if i < len(r) and r[i].strip()]
63
+ col_stats[h] = {"non_empty": len(values), "empty": total - len(values)}
64
+ return {"headers": headers, "rows": records, "total_rows": total,
65
+ "returned_rows": len(records), "columns": len(headers), "column_stats": col_stats}
66
+
67
+
68
+ @mcp.tool()
69
+ def validate_headers(content: str, expected_headers: list[str], api_key: str = "") -> dict:
70
+ """Validate that CSV headers match expected column names.
71
+
72
+ Args:
73
+ content: CSV string content
74
+ expected_headers: List of expected header names
75
+ """
76
+ allowed, msg, tier = check_access(api_key)
77
+ if not allowed:
78
+ return {"error": msg, "upgrade_url": "https://meok.ai/pricing"}
79
+
80
+ _check_rate_limit("validate_headers")
81
+ reader = csv.reader(io.StringIO(content))
82
+ rows = list(reader)
83
+ if not rows:
84
+ return {"valid": False, "error": "Empty CSV"}
85
+ actual = [h.strip() for h in rows[0]]
86
+ expected = [h.strip() for h in expected_headers]
87
+ missing = [h for h in expected if h not in actual]
88
+ extra = [h for h in actual if h not in expected]
89
+ order_match = actual[:len(expected)] == expected if not missing else False
90
+ return {"valid": len(missing) == 0, "actual_headers": actual, "expected_headers": expected,
91
+ "missing": missing, "extra": extra, "order_match": order_match,
92
+ "actual_count": len(actual), "expected_count": len(expected)}
93
+
94
+
95
+ @mcp.tool()
96
+ def detect_delimiter(content: str, api_key: str = "") -> dict:
97
+ """Auto-detect the delimiter used in a CSV/DSV file.
98
+
99
+ Args:
100
+ content: CSV/DSV string content to analyze
101
+ """
102
+ allowed, msg, tier = check_access(api_key)
103
+ if not allowed:
104
+ return {"error": msg, "upgrade_url": "https://meok.ai/pricing"}
105
+
106
+ _check_rate_limit("detect_delimiter")
107
+ sample = content[:5000]
108
+ lines = sample.split('\n')[:10]
109
+ candidates = {',': 'comma', ';': 'semicolon', '\t': 'tab', '|': 'pipe', ':': 'colon'}
110
+ scores = {}
111
+ for delim, name in candidates.items():
112
+ counts = [line.count(delim) for line in lines if line.strip()]
113
+ if not counts:
114
+ continue
115
+ avg = sum(counts) / len(counts)
116
+ consistency = 1.0 - (max(counts) - min(counts)) / max(max(counts), 1)
117
+ scores[name] = {"delimiter": delim, "avg_per_line": round(avg, 2),
118
+ "consistency": round(consistency, 3), "score": round(avg * consistency, 3)}
119
+ if not scores:
120
+ return {"detected": ",", "name": "comma", "confidence": 0.0}
121
+ best = max(scores.items(), key=lambda x: x[1]["score"])
122
+ return {"detected": best[1]["delimiter"], "name": best[0],
123
+ "confidence": min(best[1]["score"] / 5, 1.0), "all_candidates": scores}
124
+
125
+
126
+ @mcp.tool()
127
+ def convert_to_json(content: str, has_header: bool = True, max_rows: int = 500, api_key: str = "") -> dict:
128
+ """Convert CSV content to JSON array of objects.
129
+
130
+ Args:
131
+ content: CSV string content
132
+ has_header: Whether the first row is a header
133
+ max_rows: Maximum rows to convert (default 500)
134
+ """
135
+ allowed, msg, tier = check_access(api_key)
136
+ if not allowed:
137
+ return {"error": msg, "upgrade_url": "https://meok.ai/pricing"}
138
+
139
+ _check_rate_limit("convert_to_json")
140
+ reader = csv.reader(io.StringIO(content))
141
+ rows = list(reader)
142
+ if not rows:
143
+ return {"error": "Empty CSV"}
144
+ headers = rows[0] if has_header else [f"col_{i}" for i in range(len(rows[0]))]
145
+ data_rows = rows[1:] if has_header else rows
146
+ records = []
147
+ for row in data_rows[:max_rows]:
148
+ record = {}
149
+ for i, h in enumerate(headers):
150
+ val = row[i] if i < len(row) else None
151
+ if val is not None:
152
+ try:
153
+ val = int(val)
154
+ except ValueError:
155
+ try:
156
+ val = float(val)
157
+ except ValueError:
158
+ if val.lower() in ('true', 'false'):
159
+ val = val.lower() == 'true'
160
+ record[h] = val
161
+ records.append(record)
162
+ json_str = json.dumps(records, indent=2)
163
+ return {"json": json_str, "records": len(records), "total_in_csv": len(data_rows),
164
+ "truncated": len(data_rows) > max_rows, "columns": headers}
165
+
166
+
167
+ if __name__ == "__main__":
168
+ mcp.run()
@@ -0,0 +1,44 @@
1
+ name: csv-tools-ai-mcp
2
+ description: AI-powered csv tools ai MCP server for agents. Supports parse csv, validate
3
+ headers, detect delimiter. By MEOK AI Labs.
4
+ version: 1.0.0
5
+ tools:
6
+ - name: parse_csv
7
+ description: Parse CSV content and return structured data with statistics.
8
+ parameters:
9
+ - name: content
10
+ type: string
11
+ required: true
12
+ - name: has_header
13
+ type: boolean
14
+ required: false
15
+ - name: max_rows
16
+ type: integer
17
+ required: false
18
+ - name: validate_headers
19
+ description: Validate that CSV headers match expected column names.
20
+ parameters:
21
+ - name: content
22
+ type: string
23
+ required: true
24
+ - name: expected_headers
25
+ type: array
26
+ required: true
27
+ - name: detect_delimiter
28
+ description: Auto-detect the delimiter used in a CSV/DSV file.
29
+ parameters:
30
+ - name: content
31
+ type: string
32
+ required: true
33
+ - name: convert_to_json
34
+ description: Convert CSV content to JSON array of objects.
35
+ parameters:
36
+ - name: content
37
+ type: string
38
+ required: true
39
+ - name: has_header
40
+ type: boolean
41
+ required: false
42
+ - name: max_rows
43
+ type: integer
44
+ required: false
@@ -0,0 +1,55 @@
1
+ import os
2
+ import sys
3
+ import unittest
4
+
5
+ # Ensure shared auth middleware is available
6
+ sys.path.insert(0, os.path.expanduser("~/clawd/meok-labs-engine/shared"))
7
+ os.chdir(os.path.dirname(os.path.abspath(__file__)) + "/..")
8
+
9
+
10
+ class TestMCPImport(unittest.TestCase):
11
+ def test_import_server(self):
12
+ """Server module must import without errors."""
13
+ import server # noqa: F401
14
+
15
+ def test_mcp_or_server_object_exists(self):
16
+ """FastMCP servers export 'mcp'; low-level servers export 'server'."""
17
+ import server as srv
18
+ self.assertTrue(
19
+ hasattr(srv, "mcp") or hasattr(srv, "server"),
20
+ "Expected 'mcp' or 'server' object in server.py",
21
+ )
22
+
23
+
24
+ class TestAuthMiddleware(unittest.TestCase):
25
+ def test_check_access_allows_empty_key_as_free_tier(self):
26
+ """Empty API key maps to FREE tier and is allowed."""
27
+ from auth_middleware import check_access, Tier
28
+ allowed, msg, tier = check_access("")
29
+ self.assertTrue(allowed)
30
+ self.assertEqual(tier, Tier.FREE)
31
+ self.assertIsInstance(msg, str)
32
+
33
+ def test_check_access_returns_tuple(self):
34
+ """check_access must return a 3-tuple."""
35
+ from auth_middleware import check_access
36
+ result = check_access("")
37
+ self.assertIsInstance(result, tuple)
38
+ self.assertEqual(len(result), 3)
39
+
40
+
41
+ class TestHealthEndpoint(unittest.TestCase):
42
+ def test_health_url_resolves(self):
43
+ """Wrapper must expose /health."""
44
+ import urllib.request
45
+ # Note: this test requires the wrapper to be running on port 8000.
46
+ # It is skipped in CI unless the server is active.
47
+ try:
48
+ resp = urllib.request.urlopen("http://localhost:8000/health", timeout=2)
49
+ self.assertEqual(resp.status, 200)
50
+ except Exception as e:
51
+ self.skipTest(f"Server not running: {e}")
52
+
53
+
54
+ if __name__ == "__main__":
55
+ unittest.main()