MCP.so
登录

SQLite-Anet-MCP Server

@marekkucak

关于 SQLite-Anet-MCP Server

SQLite-Anet-MCP Server A blazing-fast, Rust-powered SQLite server for AI agents—speak JSON-RPC, store insights, and manage your database like a pro.

基本信息

分类

数据库

运行时

rust

传输方式

stdio

发布者

marekkucak

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is SQLite-Anet-MCP Server?

A Rust implementation of the Model Control Protocol (MCP) server that provides SQLite database capabilities via a standardized protocol. It enables AI agents to create, manage, and query SQLite databases directly, and is based on the Model Context Protocol SQLite Server reference implementation.

How to use SQLite-Anet-MCP Server?

Clone the repository, configure a .env file with NATS_URL, MCP_SUBJECT, SQLITE_DB_PATH, and RUST_LOG, ensure a NATS server is running, then run cargo run. Test using cargo run --example test_client or cargo run --example chinook_test after downloading the Chinook database.

Key features of SQLite-Anet-MCP Server

  • Create and manage SQLite database tables
  • Execute SELECT queries for data retrieval
  • Execute INSERT, UPDATE, and DELETE queries for data manipulation
  • Describe table schemas and list available tables
  • Save and synthesize business insights from data
  • NATS transport layer for message passing

Use cases of SQLite-Anet-MCP Server

  • AI agents performing direct read and write operations on a SQLite database
  • Automated data analysis and business insight extraction
  • Interactive demos seeding a database with sample data
  • Managing customer or product databases via standardized protocol

FAQ from SQLite-Anet-MCP Server

What are the system requirements?

Rust 1.70+ is required, a NATS server must be running locally or accessible via network, and SQLite is included as a Rust dependency.

How do I configure the server?

Create a .env file with the variables NATS_URL, MCP_SUBJECT, SQLITE_DB_PATH, and RUST_LOG to set the NATS connection, subject, database path, and logging level.

How can I test the server?

Run cargo run --example test_client for a basic test, or cargo run --example chinook_test after downloading the Chinook SQLite database and placing it in ./data/ with the correct SQLITE_DB_PATH environment variable.

What transport protocol does the server use?

The server uses the NATS transport layer for message passing and follows the JSON-RPC 2.0 compatible API.

What SQL operations are supported?

The server supports CREATE TABLE, SELECT (read_query), INSERT/UPDATE/DELETE (write_query), describe table schema, and list tables. It also provides an append_insight tool for business insights.

评论

数据库 分类下的更多 MCP 服务器