-
Install Meshagent CLI
-
Sign up and authenticate
- Visit Getting Started and complete the signup and authentication steps.
-
Start the MCP SQLite server as a room-level agent
This command creates a Meshagent Room named
test
and deploys a test MCP SQLite server agent. Rooms close automatically when inactive. -
Start a chatbot in the room with the SQLite toolkit
- Multiple toolkits can be enabled in a single room for the same agent.
- The output of this command will include a direct link to the Meshagent Room.
-
Test the integration
- Open the provided room link in your browser and send a message to the agent to interact with the MCP SQLite server tools.
Project-Level Deployment
For persistent, production-ready deployment, register services at the Meshagent project level. This ensures your MCP server tools and chatbot are automatically available in every new room created within the project—no need to host services or bots locally.-
Deploy the MCP SQLite server at the project level
-
Deploy the chatbot at the project level
Tools Available
The following tools are exposed by the MCP SQLite Server as callable actions within Meshagent Rooms:Tool | 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 |
Tools Details
append_insight
Add a business insight to the memo- Parameters:
insight
(string
): Business insight discovered from data analysis
create_table
Create a new table in the SQLite database- Parameters:
query
(string
): CREATE TABLE SQL statement
describe_table
Get the schema information for a specific table- Parameters:
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- Parameters:
query
(string
): SELECT SQL query to execute
write_query
Execute an INSERT, UPDATE, or DELETE query on the SQLite database- Parameters:
query
(string
): SQL query to execute
Additional Resources
- Meshagent Website: https://www.meshagent.com/
- Meshagent Documentation: https://docs.meshagent.com
- Meshagent MCP SQLite Tool Docker Image: https://hub.docker.com/r/meshagent/mcp-sqlite