get-user-balance
Retrieve user balances from social platforms (Farcaster, Twitter, Telegram) by providing platform type and user ID. Integrates with MCP server for standardized social and onchain data access.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| platform | Yes | Social platform (farcaster, twitter, telegram) | |
| userId | Yes | Farcaster ID (FID) or username of the user |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"platform": {
"description": "Social platform (farcaster, twitter, telegram)",
"type": "string"
},
"userId": {
"description": "Farcaster ID (FID) or username of the user",
"type": "string"
}
},
"required": [
"platform",
"userId"
],
"type": "object"
}