You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MCP Server for SQLite Cloud is designed to allow interaction with your SQLite Cloud databases using the AI Agent. It leverages the Model Context Protocol (MCP) to provide an interface for executing queries, commands and analyzing query performance.
7
+
The MCP Server for SQLite Cloud enables seamless interaction with SQLite Cloud databases using the AI Agent. It utilizes the Model Context Protocol (MCP) to provide tools for executing queries, managing schemas, and analyzing query performance.
5
8
6
9
## Features
7
-
-**Execute Queries**: Run`SELECT`, `INSERT`, `UPDATE`, and `DELETE` SQL queries on SQLite Cloud databases.
8
-
-**Schema Management**: Create new tables, list existing tables, and retrieve schema information for specific tables.
9
-
-**Command Execution**: Execute predefined commands supported by SQLite Cloud.
10
-
-**Performance Analysis**: Analyze the slowest queries, gather information about query plans, and reset query statistics.
10
+
-**Query Execution**: Perform`SELECT`, `INSERT`, `UPDATE`, and `DELETE` SQL operations on SQLite Cloud databases.
11
+
-**Schema Management**: Create tables, list existing ones, and retrieve schema details.
12
+
-**Command Execution**: Run predefined commands supported by SQLite Cloud.
1.**read-query**: Execute`SELECT` queries and retrieve results.
16
-
2.**write-query**: Execute`INSERT`, `UPDATE`, or `DELETE`queries.
17
-
3.**create-table**: Create new tables in the database.
18
-
4.**list-tables**: List all tables in the database.
19
-
5.**describe-table**: Retrieve schema information for a specific table.
20
-
6.**list-commands**: List all available commands and fetch external documentation.
21
-
7.**execute-command**: Execute commands listed in the `list-commands` tool.
22
-
8.**list-analyzer**: Analyze the slowest queries with optional filters.
23
-
9.**analyzer-plan-id**: Gather information about query plans and indexes.
16
+
The MCP Server offers the following tools:
17
+
18
+
1.**read-query**: Perform`SELECT` queries and fetch results.
19
+
2.**write-query**: Perform`INSERT`, `UPDATE`, or `DELETE`operations.
20
+
3.**create-table**: Create new database tables.
21
+
4.**list-tables**: Display all tables in the database.
22
+
5.**describe-table**: Retrieve schema details for a specific table.
23
+
6.**list-commands**: List available commands and access external documentation.
24
+
7.**execute-command**: Run commands from the `list-commands` tool.
25
+
8.**list-analyzer**: Analyze slow queries with optional filters.
26
+
9.**analyzer-plan-id**: Gather details about query plans and indexes.
24
27
10.**analyzer-reset**: Reset query statistics for specific queries, groups, or databases.
25
28
26
29
## Getting Started
27
-
To use the MCP Server, ensure you have a valid connection string for your SQLite Cloud database. The server can be started using the following command:
30
+
To use the MCP Server, create a [free account on SQLite Cloud](https://sqlitecloud.io) and get your _Connection String_.
0 commit comments