🤖 基于MCP协议的AI工具服务器,提供智能查询、数据分析、SQL生成等7个递增复杂度的AI工具
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-ai-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
基于 MCP (Model Context Protocol) 的 AI 工具服务器,提供7个递增复杂度的智能工具。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / data
Dynamic problem-solving through sequential thought chains
Query and manage PostgreSQL databases directly from AI assistants
Persistent memory using a knowledge graph
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Mcp Ai Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
基于 MCP (Model Context Protocol) 的 AI 工具服务器,提供7个递增复杂度的智能工具。
┌─────────────────┐ WebSocket ┌─────────────────┐
│ mcp-ai-client │ ←────────────── │ mcp-ai-server │
│ (HTTP API) │ MCP协议 │ (AI工具服务) │
└─────────────────┘ └─────────────────┘
↑ ↓
│ ┌─────────────────┐
REST API │ AI Provider │
│ │ (Ollama/OpenAI) │
↓ └─────────────────┘
┌─────────────────┐ ↓
│ 前端应用/ │ ┌─────────────────┐
│ 用户端 │ │ MySQL DB │
└─────────────────┘ └─────────────────┘
configs/config.yamlmake build && make run
# 或
go run cmd/server/main.go
ws://localhost:8081服务通过 WebSocket 提供 MCP 协议接口,主要工具:
ai_chat - AI对话ai_generate_sql - SQL生成ai_smart_query - 智能查询ai_analyze_data - 数据分析ai_query_with_analysis - 查询+分析ai_smart_insights - 智能洞察主要配置文件:configs/config.yaml
ai:
default_provider: "ollama"
providers:
ollama:
enabled: true
base_url: "http://localhost:11434"
models:
- "codellama:7b"
database:
mysql:
host: "localhost"
port: 3306
username: "root"
password: "your_password"
database: "your_database"
MIT License