Skip to main content
Glama
avantifellows

Avanti Fellows PostgreSQL MCP Server

Official

count_rows

Count rows in PostgreSQL tables for Avanti Fellows database, with optional filtering using WHERE clauses to analyze data volume.

Instructions

Count rows in a table, optionally with a WHERE clause.

Args:
    table_name: Name of the table
    schema_name: Schema name (default: public)
    where: Optional WHERE clause (without 'WHERE' keyword)

Returns:
    JSON with count

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
table_nameYes
schema_nameNopublic
whereNo

Implementation Reference

  • The handler function for the 'count_rows' MCP tool. It is registered via the @mcp.tool() decorator. Constructs and executes a safe COUNT(*) query on the specified table, optionally with a validated WHERE clause, and returns the row count as JSON.
    @mcp.tool()
    async def count_rows(table_name: str, schema_name: str = "public", where: str = None) -> str:
        """Count rows in a table, optionally with a WHERE clause.
    
        Args:
            table_name: Name of the table
            schema_name: Schema name (default: public)
            where: Optional WHERE clause (without 'WHERE' keyword)
    
        Returns:
            JSON with count
        """
        sql = f'SELECT COUNT(*) as count FROM "{schema_name}"."{table_name}"'
    
        if where:
            # Basic validation - only allow read operations in WHERE
            if not is_read_only(f"SELECT * FROM t WHERE {where}"):
                return json.dumps({"error": "Invalid WHERE clause"})
            sql += f" WHERE {where}"
    
        try:
            async with get_connection() as conn:
                row = await conn.fetchrow(sql)
                return json.dumps({"count": row["count"]})
        except Exception as e:
            return json.dumps({"error": str(e)})

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/avantifellows/mcp-postgres'

If you have feedback or need assistance with the MCP directory API, please join our Discord server