list_projects
Pack: l2beat · Endpoint: https://gateway.pipeworx.io/l2beat/mcp
Rank Ethereum layer 2 networks by Total Value Secured (TVS) in USD, largest first. Answers “which L2 has the most value secured / is the biggest L2”, and gives the top-10 leaderboard of rollups, validiums, optimiums and sidechains. Each row returns rank, project name, L2BEAT slug, category (Optimistic Rollup / ZK Rollup / Validium / Other), layer type, host chain, decentralisation stage, tvs_usd, the 7-day TVS change, and the TVS split across native, canonical, external, ether, stablecoin and BTC holdings. Covers every project L2BEAT tracks; use limit to widen the leaderboard.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | How many top-ranked projects to return (default 25, max 200). |
include_archived | boolean | no | Set true to also rank projects L2BEAT has archived (default false). |
category | string | no | Keep only one category, e.g. “Optimistic Rollup”, “ZK Rollup”, “Validium”. |
include_chart | boolean | no | Set true to append the 124-point ecosystem-wide TVS time series (default false). |
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/l2beat/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_projects","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_projects', {});
More examples
{
"limit": 10
}
{
"limit": 5,
"category": "ZK Rollup"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of L2BEAT-tracked projects with summary data"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"l2beat": {
"url": "https://gateway.pipeworx.io/l2beat/mcp"
}
}
}
See Getting Started for client-specific install steps.