{
  "schemaVersion": "1.0",
  "item": {
    "slug": "starling-bank",
    "name": "Starling Bank",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Gpunter/starling-bank",
    "canonicalUrl": "https://clawhub.ai/Gpunter/starling-bank",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/starling-bank",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=starling-bank",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-details.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/starling-bank"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/starling-bank",
    "agentPageUrl": "https://openagent3.xyz/skills/starling-bank/agent",
    "manifestUrl": "https://openagent3.xyz/skills/starling-bank/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/starling-bank/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Starling Bank",
        "body": "Manage Starling Bank accounts through mcporter + starling-bank-mcp."
      },
      {
        "title": "1. Install the MCP server",
        "body": "npm i -g starling-bank-mcp"
      },
      {
        "title": "2. Get a Personal Access Token",
        "body": "Create one at https://developer.starlingbank.com/ (Personal Access Token with required scopes)."
      },
      {
        "title": "3. Configure mcporter",
        "body": "mcporter config add starling \\\n  --command \"node $(npm root -g)/starling-bank-mcp/dist/main.js\" \\\n  --env STARLING_BANK_ACCESS_TOKEN=\"YOUR_TOKEN\""
      },
      {
        "title": "4. Verify",
        "body": "mcporter list starling --schema"
      },
      {
        "title": "Account basics",
        "body": "# List accounts (get accountUid and default categoryUid)\nmcporter call starling.accounts_list\n\n# Get balance\nmcporter call starling.account_balance_get accountUid=ACCOUNT_UID\n\n# Get account holder info\nmcporter call starling.account_holder_get\n\n# Get sort code / account number\nmcporter call starling.account_identifiers_get accountUid=ACCOUNT_UID"
      },
      {
        "title": "Transactions",
        "body": "# List transactions (ISO 8601 timestamps required)\nmcporter call starling.transactions_list \\\n  accountUid=ACCOUNT_UID \\\n  categoryUid=CATEGORY_UID \\\n  minTransactionTimestamp=2026-01-01T00:00:00.000Z \\\n  maxTransactionTimestamp=2026-01-31T23:59:59.999Z\n\n# Get single transaction detail\nmcporter call starling.feed_item_get \\\n  accountUid=ACCOUNT_UID \\\n  categoryUid=CATEGORY_UID \\\n  feedItemUid=FEED_ITEM_UID"
      },
      {
        "title": "Payments",
        "body": "# List payees\nmcporter call starling.payees_list\n\n# Create payee\nmcporter call starling.payee_create \\\n  payeeName=\"John Smith\" \\\n  payeeType=INDIVIDUAL \\\n  accountIdentifier=12345678 \\\n  bankIdentifier=608371 \\\n  bankIdentifierType=SORT_CODE \\\n  countryCode=GB\n\n# Make payment (amount in minor units / pence)\nmcporter call starling.payment_create \\\n  accountUid=ACCOUNT_UID \\\n  categoryUid=CATEGORY_UID \\\n  destinationPayeeAccountUid=PAYEE_ACCOUNT_UID \\\n  reference=\"Payment ref\" \\\n  --args '{\"amount\":{\"currency\":\"GBP\",\"minorUnits\":1000}}'"
      },
      {
        "title": "Savings Goals",
        "body": "# List goals\nmcporter call starling.savings_goals_list accountUid=ACCOUNT_UID\n\n# Create goal\nmcporter call starling.savings_goal_create \\\n  accountUid=ACCOUNT_UID name=\"Emergency Fund\" currency=GBP \\\n  --args '{\"target\":{\"currency\":\"GBP\",\"minorUnits\":100000}}'\n\n# Deposit into goal\nmcporter call starling.savings_goal_deposit \\\n  accountUid=ACCOUNT_UID savingsGoalUid=GOAL_UID \\\n  --args '{\"amount\":{\"currency\":\"GBP\",\"minorUnits\":5000}}'\n\n# Withdraw from goal\nmcporter call starling.savings_goal_withdraw \\\n  accountUid=ACCOUNT_UID savingsGoalUid=GOAL_UID \\\n  --args '{\"amount\":{\"currency\":\"GBP\",\"minorUnits\":5000}}'"
      },
      {
        "title": "Other",
        "body": "# Direct debits\nmcporter call starling.direct_debits_list accountUid=ACCOUNT_UID\n\n# Standing orders\nmcporter call starling.standing_orders_list \\\n  accountUid=ACCOUNT_UID categoryUid=CATEGORY_UID\n\n# Cards\nmcporter call starling.cards_list\n\n# Lock/unlock card\nmcporter call starling.card_lock_update cardUid=CARD_UID enabled=false"
      },
      {
        "title": "Workflow: First-Time Setup",
        "body": "Run accounts_list to get accountUid and defaultCategory (categoryUid)\nSave these IDs — they're needed for most operations\nRun account_balance_get to verify access works\nStore account details in your memory/config for future use"
      },
      {
        "title": "Notes",
        "body": "All amounts are in minor units (pence). £10.50 = 1050\nTimestamps must be ISO 8601 format: 2026-02-17T00:00:00.000Z\ncategoryUid = the defaultCategory from accounts_list for main account transactions\nBalance fields: clearedBalance (settled), effectiveBalance (including pending)\nSee references/api-details.md for full tool schemas"
      }
    ],
    "body": "Starling Bank\n\nManage Starling Bank accounts through mcporter + starling-bank-mcp.\n\nSetup\n1. Install the MCP server\nnpm i -g starling-bank-mcp\n\n2. Get a Personal Access Token\n\nCreate one at https://developer.starlingbank.com/ (Personal Access Token with required scopes).\n\n3. Configure mcporter\nmcporter config add starling \\\n  --command \"node $(npm root -g)/starling-bank-mcp/dist/main.js\" \\\n  --env STARLING_BANK_ACCESS_TOKEN=\"YOUR_TOKEN\"\n\n4. Verify\nmcporter list starling --schema\n\nQuick Reference\nAccount basics\n# List accounts (get accountUid and default categoryUid)\nmcporter call starling.accounts_list\n\n# Get balance\nmcporter call starling.account_balance_get accountUid=ACCOUNT_UID\n\n# Get account holder info\nmcporter call starling.account_holder_get\n\n# Get sort code / account number\nmcporter call starling.account_identifiers_get accountUid=ACCOUNT_UID\n\nTransactions\n# List transactions (ISO 8601 timestamps required)\nmcporter call starling.transactions_list \\\n  accountUid=ACCOUNT_UID \\\n  categoryUid=CATEGORY_UID \\\n  minTransactionTimestamp=2026-01-01T00:00:00.000Z \\\n  maxTransactionTimestamp=2026-01-31T23:59:59.999Z\n\n# Get single transaction detail\nmcporter call starling.feed_item_get \\\n  accountUid=ACCOUNT_UID \\\n  categoryUid=CATEGORY_UID \\\n  feedItemUid=FEED_ITEM_UID\n\nPayments\n# List payees\nmcporter call starling.payees_list\n\n# Create payee\nmcporter call starling.payee_create \\\n  payeeName=\"John Smith\" \\\n  payeeType=INDIVIDUAL \\\n  accountIdentifier=12345678 \\\n  bankIdentifier=608371 \\\n  bankIdentifierType=SORT_CODE \\\n  countryCode=GB\n\n# Make payment (amount in minor units / pence)\nmcporter call starling.payment_create \\\n  accountUid=ACCOUNT_UID \\\n  categoryUid=CATEGORY_UID \\\n  destinationPayeeAccountUid=PAYEE_ACCOUNT_UID \\\n  reference=\"Payment ref\" \\\n  --args '{\"amount\":{\"currency\":\"GBP\",\"minorUnits\":1000}}'\n\nSavings Goals\n# List goals\nmcporter call starling.savings_goals_list accountUid=ACCOUNT_UID\n\n# Create goal\nmcporter call starling.savings_goal_create \\\n  accountUid=ACCOUNT_UID name=\"Emergency Fund\" currency=GBP \\\n  --args '{\"target\":{\"currency\":\"GBP\",\"minorUnits\":100000}}'\n\n# Deposit into goal\nmcporter call starling.savings_goal_deposit \\\n  accountUid=ACCOUNT_UID savingsGoalUid=GOAL_UID \\\n  --args '{\"amount\":{\"currency\":\"GBP\",\"minorUnits\":5000}}'\n\n# Withdraw from goal\nmcporter call starling.savings_goal_withdraw \\\n  accountUid=ACCOUNT_UID savingsGoalUid=GOAL_UID \\\n  --args '{\"amount\":{\"currency\":\"GBP\",\"minorUnits\":5000}}'\n\nOther\n# Direct debits\nmcporter call starling.direct_debits_list accountUid=ACCOUNT_UID\n\n# Standing orders\nmcporter call starling.standing_orders_list \\\n  accountUid=ACCOUNT_UID categoryUid=CATEGORY_UID\n\n# Cards\nmcporter call starling.cards_list\n\n# Lock/unlock card\nmcporter call starling.card_lock_update cardUid=CARD_UID enabled=false\n\nWorkflow: First-Time Setup\nRun accounts_list to get accountUid and defaultCategory (categoryUid)\nSave these IDs — they're needed for most operations\nRun account_balance_get to verify access works\nStore account details in your memory/config for future use\nNotes\nAll amounts are in minor units (pence). £10.50 = 1050\nTimestamps must be ISO 8601 format: 2026-02-17T00:00:00.000Z\ncategoryUid = the defaultCategory from accounts_list for main account transactions\nBalance fields: clearedBalance (settled), effectiveBalance (including pending)\nSee references/api-details.md for full tool schemas"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Gpunter/starling-bank",
    "publisherUrl": "https://clawhub.ai/Gpunter/starling-bank",
    "owner": "Gpunter",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/starling-bank",
    "downloadUrl": "https://openagent3.xyz/downloads/starling-bank",
    "agentUrl": "https://openagent3.xyz/skills/starling-bank/agent",
    "manifestUrl": "https://openagent3.xyz/skills/starling-bank/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/starling-bank/agent.md"
  }
}