tvs_breakdown
Pack: l2beat · Endpoint: https://gateway.pipeworx.io/l2beat/mcp
Total Value Secured (TVS) breakdown by token category (canonical, external, native) for a specific L2 project slug or all projects; returns today’s snapshot from L2BEAT.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | no | Specific project (default: all) |
Example call
Arguments
{
"slug": "base"
}
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":"tvs_breakdown","arguments":{"slug":"base"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tvs_breakdown', {
"slug": "base"
});
More examples
{}
Response shape
Full JSON Schema
{
"type": "object",
"description": "TVS breakdown by token category and project"
}
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.