Data Agent Connector
Enables SQL agents to connect to any SQLAlchemy-supported database via MCP, providing read-only SQL querying, automatic table summarization, and column content search.
README
Data Agent Connector
This provides a blueprint to go from database connection string to up and running SQL Data Agent in seconds. Connect to any database that can be used with SQLAlchemy (might need to install specific engine). Builds search and convenience tools on top of a DB, made for SQL agents to interact with through the MCP protocol. Plus mirrored REST endpoint that can be connected to UIs etc.
Key Features
- Read-only SQL gateway: SQLAlchemy engines are locked to safe commands defined in
[tool.dac.settings.allowed_sql_commands]. - Automatic metadata: LLM agents summarise tables; LanceDB stores summaries plus sentence-transformer embeddings (embeddings are currently unused).
- Column-content retrieval: Distinct textual values are sampled, filtered, and indexed with LanceDB BM25 for direct content search in columns.
- MCP + REST:
/mcpserves FastMCP, while/widgets/*exposes REST endpoints for UI integration with OpenBB (customize this to your preferred UI). - Config-driven:
databases.tomldeclares available data sources,pyproject.tomlunder[tool.dac.settings]for runtime settings and.env(or environment variables) configures the LLM provider.
MCP (Mounted at /mcp)
| Tool | Summary |
|---|---|
| get_databases | Lists registered databases and descriptions. |
| show_tables / show_views | Enumerates tables/views with cached annotations where available. |
| describe_table / describe_view | Returns DDL-like metadata or view SQL. |
| get_distinct_values | Pulls sample categorical values (limit enforced). |
| preview_table | Returns first rows of non-binary columns. |
| find_relevant_columns_and_content | BM25 search over distinct textual values with score filtering. |
| query_database | Executes read-only SQL with a configurable row cap (mcp_query_limit). |
| join_path | Suggests shortest join sequences or Steiner-tree paths across tables. |
Getting Started
-
Clone the repository:
git clone https://github.com/MagnusS0/DataAgentConnector.git cd DataAgentConnector -
Install dependencies:
uv sync --group ai -
Configure your databases in
databases.toml:[databases.my_database] connection_string = "sqlite:///path/to/your/database.db" description = "My local SQLite database" [databases.another_database] connection_string = "postgresql://user:password@localhost:5432/another_database" description = "Another PostgreSQL database" -
Set up your LLM provider in
.env:LLM_API_KEY=your_api_key_here LLM_MODEL_NAME=default-model LLM_BASE_URL=https://api.your-llm-provider.com -
Run the application:
uv run uvicorn app.main:app --reload
Project Structure
DataAgentConnector/
├── app/
│ ├── agents/
│ ├── core/
│ ├── domain/
│ ├── interfaces/
│ ├── models/
│ ├── schemas/
│ ├── repositories/
│ ├── services/
│ └── main.py
├── databases.toml
├── pyproject.toml
├── .env
└── README.md
Indexing & Metadata Pipeline
- Column extraction (
app/domain/extract_colum_content.py) samples distinct textual values while filtering binary, numeric, or overly long fields; tunable viatool.dac.settings.fts_extraction_options. - FTS indexing (
app/services/indexing_service.py) persists values into LanceDB tables namedcolumn_contents_<database>and builds BM25 indexes. - Annotation workflow (
app/services/annotation_service.py) runs LLM prompts with table metadata, previews, and sampled values (schema hashes used to skip already processed tables), embeddings are added via sentence-transformers.
FK Graph & Join Paths
Foreign key constraints are analyzed to build a cached CSR adjacency matrix (app/domain/fk_analyzer.py) where tables are nodes and FKs are edges. For two tables, BFS finds the shortest join sequence. For 3+ tables, an approximate Steiner tree (MST on all-pairs distances) computes the minimal spanning network, returning ordered JoinStep objects with FK column mappings.
This allows agents to request optimal join paths across multiple tables when formulating SQL queries. Even when there is no direct foreign key relationship defined in the database schema.
Stats for the interested user
Indexing and annotating all of BIRD-SQL training databases (69 databases) results in:
- Table annotations stored successfully in ~200 seconds
- Content FTS indices created successfully in ~5 seconds
Hardware: Intel i9-14900K, 64GB RAM, RTX 3090 running Menlo/Jan-nano (4B params) using vLLM
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。