list_tables
Retrieve all table names from the JVLink MCP Server database to access Japanese horse racing data for analysis without SQL.
Instructions
データベース内のテーブル一覧を取得
Returns:
テーブル名のリストInput Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/jvlink_mcp_server/server.py:217-226 (handler)The list_tables tool handler, which uses DatabaseConnection to retrieve and return a list of table names.
@mcp.tool() def list_tables() -> list[str]: """データベース内のテーブル一覧を取得 Returns: テーブル名のリスト """ with DatabaseConnection() as db: return db.get_tables()