get_database_overview
Retrieve a comprehensive overview of the Japanese horse racing database, including structure and available data types for analysis.
Instructions
データベース全体の概要を取得
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/jvlink_mcp_server/server.py:680-683 (handler)The get_database_overview function, marked as an MCP tool, retrieves a database snapshot.
def get_database_overview() -> dict: """データベース全体の概要を取得""" with DatabaseConnection() as db: return _get_data_snapshot(db)