{
"mcpServers": {
"machbase-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
블로그 읽기 : 클로드 MCP를 Machbase Neo에 연동하고, AI스럽게 사용해보기
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 36 days ago. 8 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Machbase Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.

블로그 읽기 : 클로드 MCP를 Machbase Neo에 연동하고, AI스럽게 사용해보기
This project is an MCP (Model Context Protocol) based server that enables natural language-based database operations through integration between Claude Desktop and Machbase Neo.
When users request database operations in natural language through Claude Desktop's MCP connection, the MCP server converts these requests into Machbase Neo commands and executes them.
| Step | Component | Role | Communication | |------|-----------|------|---------------| | 1 | User | Input natural language request | Chat interface | | 2 | Claude Desktop | Parse request & call MCP tools | MCP Protocol | | 3 | MCP Server | Generate SQL & connect to Machbase | HTTP/REST API | | 4 | Machbase Neo | Execute database operations | SQL queries |
Data Flow:
User Request → Claude Desktop → MCP Server → Machbase Neo
↑ ↓
Response ← Claude Interpretation ← MCP Response ← Query Results
Install Claude Desktop (if you don't have it yet)
Download project from Git
git clone https://github.com/your-org/Machbase_MCP_Server.git
cd Machbase_MCP_Server
Run automatic installation
MCP_Install.bat
git clone https://github.com/your-org/Machbase_MCP_Server.git
cd Machbase_MCP_Server
./MCP_Install_mac.sh
After installation: Restart Claude Desktop and test with "Show me the Machbase table list!"
For manual installation or if errors occur during the above installation process:
git clone https://github.com/your-org/Machbase_MCP_Server.git
cd Machbase_MCP_Server
# Using Conda
conda create -n mcp python=3.11
conda activate mcp
# Using venv
python -m venv mcp-env
source mcp-env/bin/activate # Linux/macOS
# mcp-env\Scripts\activate # Windows
pip install -r requirements.txt
# Create C:/Users/Username/AppData/Roaming/Claude/claude_desktop_config.json
# Machbase.py to C:/Users/Username/AppData/Roaming/Claude/
{
"mcpServers": {
"machbase": {
"command": "C:/Users/MACH-DE-28/anaconda3/envs/mcp/python.exe",
"args": ["C:/Users/MACH-DE-28/Desktop/실험/MCP/Machbase.py"],
"env": {
"MACHBASE_HOST": "localhost",
"MACHBASE_PORT": "5654",
"MACHBASE_USER": "sys",
"MACHBASE_PASSWORD": "manager"
}
}
}
}
You can make natural language requests in Claude Desktop like these:
"Create a table for temperature logs"
"Insert today's temperature: 28.4°C at 9am"
"Show me the lates
... [View full README on GitHub](https://github.com/machbase/machbase-mcp-server#readme)