MCP Tools Reference: bigquery.googleapis.com

Tool: list_table_ids

Tabellen-IDs in einem BigQuery-Dataset auflisten.

Im folgenden Beispiel wird gezeigt, wie Sie mit curl das MCP-Tool list_table_ids aufrufen.

Curl-Anfrage
                  
curl --location 'https://bigquery.googleapis.com/mcp' \
--header 'content-type: application/json' \
--header 'accept: application/json, text/event-stream' \
--data '{
  "method": "tools/call",
  "params": {
    "name": "list_table_ids",
    "arguments": {
      // provide these details according to the tool's MCP specification
    }
  },
  "jsonrpc": "2.0",
  "id": 1
}'
                

Eingabeschema

Anfrage nach einer Liste von Tabellen in einem Dataset.

JSON-Darstellung
{
  "projectId": string,
  "datasetId": string
}
Felder
projectId

string

Erforderlich. Projekt-ID der Tabellenanfrage.

datasetId

string

Erforderlich. Dataset-ID der Tabellenanfrage.

Ausgabeschema

Antwort für eine Liste von Tabellen.

JSON-Darstellung
{
  "tables": [
    {
      object (ListFormatTable)
    }
  ]
}
Felder
tables[]

object (ListFormatTable)

Die Tabellen, die der Anfrage entsprechen.

JSON-Darstellung
{
  "id": string
}
Felder
id

string

Die ID der Tabelle.

Tool-Annotationen

Destruktiver Hinweis: ❌ | Idempotenter Hinweis: ✅ | Nur-Lese-Hinweis: ✅ | Open-World-Hinweis: ❌