We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ai-api-booster/mcp-rosetta-icp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
coinaction.md•423 B
# CoinAction
CoinActions are different state changes that a Coin can undergo. When a Coin is created, it is coin_created. When a Coin is spent, it is coin_spent. It is assumed that a single Coin cannot be created or spent more than once.
## Example Usage
```typescript
import { CoinAction } from "icpmcp-rosetta-api";
let value: CoinAction = "coin_spent";
```
## Values
```typescript
"coin_created" | "coin_spent"
```