query_data
Execute SQL SELECT queries on an SQLite database via the MCP server. Retrieve specific data with optional row limits for efficient results handling.
Instructions
Execute a SELECT query on the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of rows to return | |
query | Yes | SQL SELECT query to execute |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"description": "Maximum number of rows to return",
"type": "number"
},
"query": {
"description": "SQL SELECT query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}