> ## Documentation Index
> Fetch the complete documentation index at: https://docs.evento.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Available tools

> Tool inputs and API route mappings for the Evento public MCP server

## Tool inventory

<CardGroup cols={2}>
  <Card title="list-events" icon="list">
    Lists events for a user.
  </Card>

  <Card title="get-event" icon="calendar">
    Fetches event details by ID.
  </Card>
</CardGroup>

## list-events

List events for a user.

Input:

* `username` (required, string)
* `type` (optional, `upcoming | past | profile`)
* `limit` (optional, number)

Route mapping:

* `GET /public/v1/users/{username}/events`

## get-event

Get event details by ID.

Input:

* `eventId` (required, string)

Route mapping:

* `GET /public/v1/events/{eventId}`

## Prompt examples

* "List my upcoming events"
* "Show events for satoshi"
* "Get event evt\_abc123"

## Next steps

<CardGroup cols={2}>
  <Card title="Architecture" icon="diagram-project" href="/mcp-server/architecture">
    See how MCP calls are normalized and executed.
  </Card>

  <Card title="Testing and troubleshooting" icon="stethoscope" href="/mcp-server/testing-and-troubleshooting">
    Validate tools and debug failures.
  </Card>
</CardGroup>
