polardb-mysql-mcp-server/server.py [78:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            name="table_data",
            description="get data from the table,default limit 50 rows",
            mimeType="text/plain"
        )
    ]
@app.read_resource()
async def read_resource(uri: AnyUrl) -> str:
    """Read table contents and schema"""
    config = get_db_config()
    uri_str = str(uri)
    logger.info(f"Reading resource: {uri_str}")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



polardb-postgresql-mcp-server/server.py [78:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            name="table_data",
            description="get data from the table,default limit 50 rows",
            mimeType="text/plain"
        )
    ]


@app.read_resource()
async def read_resource(uri: AnyUrl) -> str:
    config = get_db_config()
    uri_str = str(uri)
    logger.info(f"Reading resource: {uri_str}")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



