get_project

Pack: l2beat · Endpoint: https://gateway.pipeworx.io/l2beat/mcp

Full project record by slug — risks, stage, milestones, contracts.

Parameters

NameTypeRequiredDescription
slugstringyesL2BEAT slug (e.g. “arbitrum”, “optimism”, “base”)

Example call

Arguments

{
  "slug": "arbitrum"
}

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":"get_project","arguments":{"slug":"arbitrum"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_project', {
  "slug": "arbitrum"
});

More examples

{
  "slug": "optimism"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Full project record including risks, stage, milestones, contracts"
}

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.

Regenerated from source · build July 6, 2026