Tools
SQLite
Get set up in the cloud in just a few steps:
1. Install Meshagent (with all features)
2. Sign up & Authenticate
Follow the guide at Meshagent CLI Getting Started.
3. Start the MCP SQLite Server in a Meshagent Room
This command starts a Meshagent Room named test
with the MCP server running. Note: Rooms automatically close if inactive.
4. Join with a Chatbot Agent (with SQLite toolkit)
- The chatbot agent
sample
will join thetest
room, equipped with the SQLite toolkit. - You may use multiple toolkits in a single room.
- After running, you’ll receive a link to the room in your terminal output for web-based interaction with the agent and tools.
Tools Available
Summary of Tools
Tool Name | Short Description |
---|---|
append_insight | Add a business insight to the memo |
create_table | Create a new table in the SQLite database |
describe_table | Get the schema information for a specific table |
list_tables | List all tables in the SQLite database |
read_query | Execute a SELECT query on the SQLite database |
write_query | Execute an INSERT, UPDATE, or DELETE query |
Details
append_insight
Add a business insight to the memo
Parameter | Type | Description |
---|---|---|
insight | string | Business insight discovered from data analysis |
create_table
Create a new table in the SQLite database
Parameter | Type | Description |
---|---|---|
query | string | CREATE TABLE SQL statement |
describe_table
Get the schema information for a specific table
Parameter | Type | Description |
---|---|---|
table_name | string | Name of the table to describe |
list_tables
List all tables in the SQLite database
No parameters.
read_query
Execute a SELECT query on the SQLite database
Parameter | Type | Description |
---|---|---|
query | string | SELECT SQL query to execute |
write_query
Execute an INSERT, UPDATE, or DELETE query
Parameter | Type | Description |
---|---|---|
query | string | SQL query to execute |
Meshagent & Related Resources
- Meshagent Website: https://www.meshagent.com/
- Getting Started: https://docs.meshagent.com/room_api/get_started
- Room API Overview: https://docs.meshagent.com/room_api/overview
- Meshagent MCP Tool Docker Image: https://hub.docker.com/r/meshagent/mcp-sqlite