run_sql_plus_plus_query
Execute a SQL++ query on a specified scope within the Couchbase MCP Server to retrieve results as a list of JSON objects for data interaction.
Instructions
Run a SQL++ query on a scope and return the results as a list of JSON objects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | ||
scope_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"title": "Query",
"type": "string"
},
"scope_name": {
"title": "Scope Name",
"type": "string"
}
},
"required": [
"scope_name",
"query"
],
"title": "run_sql_plus_plus_queryArguments",
"type": "object"
}