list_tokens
List the hand-onboarded tokens (tokenized shares and other instruments) available through the Aktionariat MCP server. Each row returns a slim summary per token — issuer, ticker, name, icon, contract address, chain — suitable for an agent to reason about without overloading the context.
Authentication
Section titled “Authentication”Public. No sign-in required.
Inputs
Section titled “Inputs”| Field | Type | Required | Description |
|---|---|---|---|
query | string | No | Optional free-text filter, matched case-insensitively against ticker, name, issuer name, or contract address. |
limit | integer | No | Maximum number of tokens to return. Default 50, maximum 200. |
Output
Section titled “Output”A token summary array. The exact shape mirrors the platform’s internal TokenSummary model and includes ticker, issuer name, contract address, chain, and a logo URL.
Example Prompts
Section titled “Example Prompts”- “List the tokenized companies on Aktionariat.”
- “Show me all tokens with
AKTin their ticker.” - “Which Swiss craft brewers are tokenized on Aktionariat?”
- “Find the DAKS token.”
Notes for Agents
Section titled “Notes for Agents”- Tokens that are not on the Aktionariat-curated allowlist are treated as nonexistent. Do not surface or guess tickers that the platform has not onboarded.
- When the user refers to a company by name, call
list_tokensfirst to resolve the matchingtickerandissuerId. Most downstream tools (order_book,my_secondary_market_orders) need the resolved id rather than the name. - Prefer the smallest filter that still answers the user’s question — narrow
querystrings keep the response fast and small.