Up Banking MCP Server
This server provides secure, read-only access to Up Banking data through the Model Context Protocol, enabling you to query financial information directly through conversation with Claude.
Core Capabilities:
Test API Connection - Verify authentication and connectivity using the
up_pingtoolAccount Management - List all accounts with filtering by type (SAVER, TRANSACTIONAL, HOME_LOAN) or ownership (INDIVIDUAL, JOINT), view account details, and check balances
Transaction Queries - Access transaction history with comprehensive filtering options:
Filter by account ID, status (HELD/SETTLED), date range (RFC 3339 format), spending category, or custom tags
Get detailed information for individual transactions including amounts, descriptions, and categorization
Control pagination with configurable page sizes (up to 100 records)
Category Information - Browse Up's spending category hierarchy, explore parent-child relationships, and retrieve category details for use in transaction filtering
Real-time Financial Insights - Ask Claude questions about balances, spending patterns, and transaction history to gain actionable insights from your banking data
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Up Banking MCP Servershow me my recent transactions from last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Up Banking MCP Server
A Model Context Protocol (MCP) server that provides integration with the Up Banking API. This server allows Claude to interact with your Up banking data, including accounts, transactions, and categories.
Features
Account Management: List all accounts, get account details and balances
Transaction History: Query transactions with flexible filtering (date range, status, category, tags)
Category Information: Access Up's spending categories for better transaction insights
Type-Safe: Built with TypeScript for reliability and developer experience
Secure: Uses Up's personal access token for authentication
Related MCP server: Plaid Transactions MCP Server
Prerequisites
Node.js 18 or higher
An Up bank account
Up personal access token
Installation
Clone or download this repository:
cd up-mcp-serverInstall dependencies:
npm installBuild the server:
npm run buildGetting Your Up API Token
Open the Up app on your phone
Swipe right and select "Data sharing"
Tap on 'Personal Access Token'
Select 'Generate a token'
Choose how long you want the token to last
Follow the prompts and copy your token securely
Important: Keep your token secure! Never share it or commit it to version control.
Configuration
Claude Desktop Configuration
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"up-banking": {
"command": "node",
"args": ["/absolute/path/to/up-mcp-server/build/index.js"],
"env": {
"UP_API_TOKEN": "your_up_api_token_here"
}
}
}
}Replace /absolute/path/to/up-mcp-server with the actual path to this directory, and replace your_up_api_token_here with your Up personal access token.
Alternative: Using npx
You can also run the server directly with npx:
{
"mcpServers": {
"up-banking": {
"command": "npx",
"args": ["-y", "/absolute/path/to/up-mcp-server"],
"env": {
"UP_API_TOKEN": "your_up_api_token_here"
}
}
}
}Available Tools
up_ping
Test the API connection and verify authentication is working.
up_list_accounts
List all accounts with optional filtering by account type or ownership.
Parameters:
accountType(optional): Filter by "SAVER", "TRANSACTIONAL", or "HOME_LOAN"ownershipType(optional): Filter by "INDIVIDUAL" or "JOINT"
up_get_account
Get detailed information about a specific account.
Parameters:
accountId(required): The account ID
up_list_transactions
List transactions with comprehensive filtering options.
Parameters:
accountId(optional): Filter to a specific accountstatus(optional): "HELD" (pending) or "SETTLED"since(optional): Start date in RFC 3339 format (e.g., "2024-01-01T00:00:00+10:00")until(optional): End date in RFC 3339 formatcategory(optional): Category ID (e.g., "restaurants-and-cafes")tag(optional): Transaction tagpageSize(optional): Number of results (1-100)
up_get_transaction
Get detailed information about a specific transaction.
Parameters:
transactionId(required): The transaction ID
up_list_categories
List all spending categories in Up.
Parameters:
parentId(optional): Filter to children of a specific parent category
up_get_category
Get details about a specific category.
Parameters:
categoryId(required): The category ID (e.g., "restaurants-and-cafes")
Usage Examples
Once configured, you can ask Claude questions like:
"What's my current account balance?"
"Show me all transactions from last month"
"How much did I spend on restaurants this week?"
"List all my saver accounts"
"What are the pending transactions in my spending account?"
"Show me all transactions tagged with 'vacation'"
Development
Watch Mode
For development with automatic recompilation:
npm run devTesting the Connection
After configuration, restart Claude Desktop and try:
Can you ping the Up API to verify the connection?Troubleshooting
"UP_API_TOKEN environment variable is required"
Make sure you've added your Up API token to the env section of your Claude Desktop config.
"Up API error: 401"
Your API token is invalid or expired. Generate a new token in the Up app.
Server not appearing in Claude
Check that the path to
build/index.jsis absolute and correctVerify the JSON syntax in your config file is valid
Restart Claude Desktop completely
Check Claude's logs for error messages
Security Notes
Your Up API token grants full read access to your banking data
Never commit your token to version control
Use environment variables or secure configuration management
Token access can be revoked anytime in the Up app
Consider setting an expiration date for your tokens
API Rate Limits
The Up API has rate limits. The server will return error messages if limits are exceeded. Use pagination and filtering to minimize API calls.
Contributing
This is a basic implementation covering the main read operations. Potential enhancements:
Add webhook support for real-time transaction notifications
Implement transaction categorization updates
Add attachment/receipt support
Support for pagination with cursor-based browsing
License
MIT
Related Links
Available Tools
7 toolsup_get_accountB
Get details for a specific account by ID, including current balance and account information.
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | Yes | The unique identifier for the account |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves account details, implying a read-only operation, but doesn't address key aspects like authentication requirements, rate limits, error handling, or response format. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior and constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence: 'Get details for a specific account by ID, including current balance and account information.' It is front-loaded with the core purpose and includes relevant details without unnecessary words. Every part of the sentence contributes value, making it appropriately concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one required parameter, no nested objects) and high schema coverage, the description is minimally adequate. However, with no annotations and no output schema, it fails to explain behavioral traits or return values. The description covers the basic purpose but doesn't compensate for the lack of structured data, leaving the agent with incomplete context for safe and effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'accountId' parameter clearly documented as 'The unique identifier for the account.' The description adds no additional parameter details beyond what the schema provides, such as format examples or constraints. According to the rules, with high schema coverage (>80%), the baseline score is 3, as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get details for a specific account by ID, including current balance and account information.' It specifies the verb ('Get'), resource ('account'), and scope ('by ID'), making it easy to understand. However, it doesn't explicitly differentiate from siblings like 'up_list_accounts' (which likely lists multiple accounts) or 'up_get_transaction' (which retrieves transaction details), so it falls short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention siblings like 'up_list_accounts' for listing all accounts or 'up_get_transaction' for transaction details, nor does it specify prerequisites or exclusions. The agent must infer usage from the name and description alone, which is insufficient for optimal tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
up_get_categoryB
Get details about a specific category by ID, including its name and parent/child relationships.
| Name | Required | Description | Default |
|---|---|---|---|
| categoryId | Yes | The unique identifier for the category (e.g., 'restaurants-and-cafes') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves details, implying a read-only operation, but does not specify whether it requires authentication, has rate limits, or what happens if the category ID is invalid. The description adds minimal behavioral context beyond the basic purpose.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the key information (verb, resource, and what details are included) without any wasted words. It is appropriately sized for a simple tool with one parameter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one parameter, no output schema, no annotations), the description is adequate but has gaps. It covers the purpose and what details are retrieved, but lacks information on behavioral aspects like error handling or authentication needs. Without annotations or an output schema, the description should provide more context to be fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the parameter 'categoryId' fully documented in the schema. The description does not add any additional meaning or details about the parameter beyond what the schema provides, such as examples of valid IDs or constraints. With high schema coverage, the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get details') and resource ('a specific category by ID'), including what information is retrieved ('name and parent/child relationships'). It distinguishes itself from 'up_list_categories' by focusing on a single category rather than listing multiple. However, it doesn't explicitly contrast with other siblings like 'up_get_account' or 'up_get_transaction' beyond the resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when detailed information about a specific category is needed, as opposed to 'up_list_categories' for listing categories. However, it lacks explicit guidance on when to use this tool versus alternatives like 'up_get_account' or 'up_get_transaction', and does not mention any prerequisites or exclusions (e.g., when not to use it).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
up_get_transactionB
Get detailed information about a specific transaction by ID, including amount, description, category, and related account.
| Name | Required | Description | Default |
|---|---|---|---|
| transactionId | Yes | The unique identifier for the transaction |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a read operation ('Get'), but doesn't mention authentication requirements, rate limits, error conditions, or response format details. While it implies safe retrieval, critical behavioral traits like permissions or data sensitivity are omitted, making it insufficient for a tool with zero annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and includes relevant details (fields retrieved). There is no wasted language or redundancy, making it appropriately sized for a simple retrieval tool with one parameter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (single parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and fields returned, but lacks behavioral context (e.g., authentication, errors) and doesn't leverage sibling tools for better guidance. Without annotations or output schema, more completeness on usage and behavior would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'transactionId' fully documented in the schema as 'The unique identifier for the transaction'. The description adds no additional parameter details beyond what the schema provides, such as format examples or constraints. Baseline 3 is appropriate since the schema does the heavy lifting, but no extra value is added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get') and resource ('transaction'), specifying it retrieves detailed information including specific fields (amount, description, category, related account). It distinguishes from siblings like up_list_transactions by focusing on a single transaction rather than listing multiple. However, it doesn't explicitly contrast with up_get_account or up_get_category, which follow similar patterns for different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when detailed information about a specific transaction is needed, but doesn't explicitly state when to use this versus alternatives like up_list_transactions for browsing or up_get_account for account details. No guidance on prerequisites (e.g., needing a valid transaction ID) or exclusions is provided, leaving usage context somewhat inferred rather than clearly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
up_list_accountsB
List all accounts for the authenticated user. Returns account balances, types (SAVER, TRANSACTIONAL, HOME_LOAN), and ownership information.
| Name | Required | Description | Default |
|---|---|---|---|
| accountType | No | Filter by account type | |
| ownershipType | No | Filter by ownership type |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the tool returns balances, types, and ownership info, but lacks details on permissions required, rate limits, pagination, or error handling. For a list operation with no annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with zero waste: the first states the action and scope, and the second specifies return data. It's front-loaded with the core purpose and efficiently structured, making every sentence earn its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description provides basic purpose and return data but lacks completeness for a list tool. It doesn't cover response format details, error cases, or authentication context, which are important for agent usage. The schema handles parameters well, but overall context is minimally adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters ('accountType' and 'ownershipType') well-documented in the schema. The description doesn't add any parameter-specific details beyond what the schema provides, such as default behaviors or interaction effects, so it meets the baseline for high schema coverage without extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('List') and resource ('accounts for the authenticated user'), specifying what the tool does. It distinguishes from siblings like 'up_get_account' (singular retrieval) and 'up_get_transaction' (different resource), but doesn't explicitly contrast with 'up_list_categories' or 'up_list_transactions' which share the 'list' pattern for different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for viewing all accounts with optional filtering, but doesn't explicitly state when to use this vs. alternatives like 'up_get_account' for single accounts or 'up_list_transactions' for transaction data. No exclusions or prerequisites are mentioned, leaving usage context somewhat implied rather than clearly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
up_list_categoriesA
List all spending categories in Up. Categories have a parent-child relationship. Use this to understand category IDs for filtering transactions.
| Name | Required | Description | Default |
|---|---|---|---|
| parentId | No | Optional: Filter to only show children of a specific parent category |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that categories have a 'parent-child relationship', which is useful behavioral context beyond basic listing. However, it doesn't mention other traits like pagination, rate limits, authentication needs, or what happens if parentId is invalid. For a read-only list tool with no annotations, this is adequate but leaves gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded: the first sentence states the core purpose, the second adds key context (parent-child relationship), and the third provides usage guidance. Every sentence earns its place with zero waste, making it efficient for agent comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (single optional parameter, no output schema, no annotations), the description is reasonably complete. It covers purpose, structural context (parent-child), and usage guidance. However, without annotations or output schema, it could benefit from mentioning return format or pagination, but for a simple list tool, this is minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the schema fully documenting the optional 'parentId' parameter. The description adds no additional parameter semantics beyond what the schema provides (e.g., no examples or format details). According to rules, with high schema coverage (>80%), the baseline is 3 even with no param info in the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'List all spending categories in Up' with the specific verb 'List' and resource 'spending categories'. It distinguishes from siblings like 'up_get_category' (singular retrieval) and 'up_list_transactions' (different resource), though not explicitly named. However, it doesn't fully differentiate from hypothetical category-related siblings beyond scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for usage: 'Use this to understand category IDs for filtering transactions', which implicitly guides when to use it (for ID lookup before filtering). It doesn't explicitly state when not to use it or name alternatives like 'up_get_category', but the context is sufficient for typical agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
up_list_transactionsA
List transactions across all accounts or for a specific account. Supports filtering by status, date range, category, and tags. Returns paginated results ordered newest first.
| Name | Required | Description | Default |
|---|---|---|---|
| accountId | No | Optional: Filter to transactions for a specific account | |
| status | No | Filter by transaction status (pending or settled) | |
| since | No | Start date-time in RFC 3339 format (e.g., 2024-01-01T00:00:00+10:00) | |
| until | No | End date-time in RFC 3339 format (e.g., 2024-12-31T23:59:59+10:00) | |
| category | No | Filter by category ID (e.g., 'restaurants-and-cafes', 'good-life') | |
| tag | No | Filter by transaction tag | |
| pageSize | No | Number of records to return (default: 30, max: 100) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behaviors: it lists transactions (read operation), supports filtering by multiple criteria, returns paginated results, and orders them newest first. This covers scope, output format, and ordering, though it doesn't mention rate limits, authentication needs, or error handling.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by filtering and pagination details in subsequent clauses. Every sentence adds value without redundancy, and it's appropriately sized for a tool with multiple parameters and no annotations. There's no wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (7 parameters, no output schema, no annotations), the description is reasonably complete. It covers purpose, filtering scope, and output behavior (paginated, ordered). However, it lacks details on response format, error cases, or authentication requirements, which would be helpful for a list tool with many filters.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds some semantic context by listing filterable fields (status, date range, category, tags) and implying pagination, but the input schema already has 100% coverage with detailed descriptions for all 7 parameters. The description doesn't provide additional syntax, examples, or constraints beyond what's in the schema, so it meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'List transactions across all accounts or for a specific account.' It specifies the verb ('List') and resource ('transactions'), and distinguishes it from siblings like 'up_get_transaction' (singular) and 'up_list_accounts' (different resource). However, it doesn't explicitly differentiate from 'up_get_account' or 'up_list_categories' beyond resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by mentioning filtering capabilities and pagination, but doesn't explicitly state when to use this tool versus alternatives. For example, it doesn't clarify if this should be used over 'up_get_transaction' for single transactions or provide guidance on account-specific versus all-account queries. The context is clear but lacks explicit alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
up_pingA
Test the Up API connection and verify authentication is working
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the tool's purpose (testing connection and authentication) but lacks details on behavioral traits such as rate limits, error responses, or what constitutes a successful test. It does not contradict annotations (none exist), but provides only basic operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Test the Up API connection') and adds necessary detail ('verify authentication is working'). There is zero waste, and every word earns its place in conveying the tool's function clearly and directly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is complete enough for its purpose. It explains what the tool does and why, though it could enhance completeness by mentioning expected outputs or error handling. However, for a simple connectivity test, it provides adequate context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and schema description coverage is 100%, so no parameter documentation is needed. The description does not add parameter semantics (as there are none), but this is appropriate. A baseline of 4 is applied since no parameters exist, and the description does not mislead about inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Test the Up API connection') and resource ('Up API'), with the additional purpose of verifying authentication. It distinguishes from sibling tools that retrieve data (e.g., up_get_account, up_list_transactions) by focusing on connectivity testing rather than data operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context ('verify authentication is working'), suggesting this tool should be used to check API connectivity and auth status. However, it does not explicitly state when not to use it (e.g., for actual data retrieval) or name alternatives, leaving some guidance implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Every tool has a clearly distinct purpose with no ambiguity. The tools are organized around three main resources (accounts, categories, transactions) with specific get and list operations for each, plus a separate ping utility. The descriptions clearly differentiate between retrieving single items by ID versus listing multiple items with filtering options.
All tools follow a perfectly consistent 'up_verb_noun' pattern throughout. The verb-noun combinations are logical and predictable (get_account, list_accounts, get_category, list_categories, etc.), with consistent snake_case formatting. The ping tool also fits this pattern as a special case.
Seven tools is an ideal number for this banking API server. It provides complete coverage for the three core resource types (accounts, categories, transactions) with both get and list operations, plus a connection test utility. Each tool earns its place without being overwhelming or insufficient.
The toolset provides excellent read-only coverage for the banking domain with get and list operations for all major resources. The only minor gap is the absence of write operations (create/update/delete transactions or accounts), but this is likely intentional for a banking API focused on data retrieval rather than modification. The surface covers all essential querying workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Chat with your bank data: balances, transactions, budgets, bills. Reads only, never moves money.
Personal finance, bank account, and shared memory connector for Claude, ChatGPT, Gemini Spark & more
Connect AI agents to bank accounts, transactions, balances, and investments.
Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP wrapper for Up Bank's API that allows Claude and other MCP-enabled clients to manage accounts, transactions, categories, tags, and webhooks from Up Bank.3MIT
- FlicenseNot gradedqualityDmaintenanceEnables secure interaction with Plaid's Transactions API to sync, search, and analyze financial transactions from linked bank accounts using natural language queries.
- AlicenseAqualityCmaintenanceEnables interaction with You Need A Budget (YNAB) through their API, allowing users to manage budgets, accounts, categories, transactions, payees, and scheduled transactions through natural language.12181GPL 3.0
- AlicenseNot gradedqualityDmaintenanceEnables querying Up Bank account transactions and spending habits through natural language, using the Up Bank API in read-only mode.208Do What The F*ck You Want To Public
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alex1092/up-bank-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server