get-tables
Retrieve a list of all tables within a specified Informix database using the MCP server, simplifying database exploration and table inspection.
Instructions
Get all tables in the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | The database to get the tables from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"database": {
"description": "The database to get the tables from",
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}