Get set up in the cloud in just a few steps:

1. Install Meshagent (with all features)

pip install "meshagent[all]"

2. Sign up & Authenticate

Follow the guide at Meshagent CLI Getting Started.

3. Start the MCP SQLite Server in a Meshagent Room

meshagent service test --room=test --role=agent \
  --image=meshagent/mcp-sqlite:latest \
  --env MESHAGENT_PORT=8001 \
  --port="num=8001 path=/webhook liveness=/ type=meshagent.callable" \
  --name=mcp-sqlite-service

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)

meshagent chatbot join --room=test --agent-name=sample \
  --name=sample --toolkit=mcp-sqlite
  • The chatbot agent sample will join the test 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 NameShort Description
append_insightAdd a business insight to the memo
create_tableCreate a new table in the SQLite database
describe_tableGet the schema information for a specific table
list_tablesList all tables in the SQLite database
read_queryExecute a SELECT query on the SQLite database
write_queryExecute an INSERT, UPDATE, or DELETE query

Details

append_insight

Add a business insight to the memo

ParameterTypeDescription
insightstringBusiness insight discovered from data analysis

create_table

Create a new table in the SQLite database

ParameterTypeDescription
querystringCREATE TABLE SQL statement

describe_table

Get the schema information for a specific table

ParameterTypeDescription
table_namestringName 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

ParameterTypeDescription
querystringSELECT SQL query to execute

write_query

Execute an INSERT, UPDATE, or DELETE query

ParameterTypeDescription
querystringSQL query to execute