Skip to main content
Glama

Server Details

Read-only Increase banking observability plus one safe non-money-moving write, for AI agents.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
m190/usefulapi-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.

Tool Definition Quality

Score is being calculated. Check back soon.

Available Tools

18 tools
increase_create_external_accountCreate external account
Destructive
Inspect

Registers an external (counterparty) bank account in Increase for future transfers. This creates a record only — it MOVES NO MONEY. Increase API: POST /external_accounts.

ParametersJSON Schema
NameRequiredDescriptionDefault
fundingNoThe type of the destination account. Default checking.
descriptionYesA human-readable description/name for this external account.
account_holderNoThe type of entity that owns the external account.
account_numberYesThe counterparty's account number.
routing_numberYesThe counterparty's 9-digit ABA routing number.
increase_get_accountGet account
Read-only
Inspect

Retrieve a single bank account by id. Increase API: GET /accounts/{account_id}.

ParametersJSON Schema
NameRequiredDescriptionDefault
account_idYesAccount id (e.g. account_...).
increase_get_account_balanceGet account balance
Read-only
Inspect

Retrieve an account's current and available balance. Increase API: GET /accounts/{account_id}/balance. Optionally as of a point in time.

ParametersJSON Schema
NameRequiredDescriptionDefault
at_timeNoISO 8601 timestamp to get the balance as of that moment (query param at_time).
account_idYesAccount id (e.g. account_...).
increase_get_ach_transferGet ACH transfer
Read-only
Inspect

Retrieve a single ACH transfer by id. Increase API: GET /ach_transfers/{ach_transfer_id}.

ParametersJSON Schema
NameRequiredDescriptionDefault
ach_transfer_idYesACH transfer id (e.g. ach_transfer_...).
increase_get_transactionGet transaction
Read-only
Inspect

Retrieve a single transaction by id. Increase API: GET /transactions/{transaction_id}.

ParametersJSON Schema
NameRequiredDescriptionDefault
transaction_idYesTransaction id (e.g. transaction_...).
increase_list_account_numbersList account numbers
Read-only
Inspect

List account numbers (deposit routing/account number pairs). Increase API: GET /account_numbers. Filter by account and status (sent as status.in).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. active | disabled | canceled.
account_idNoOnly account numbers for this account id.
increase_list_accountsList accounts
Read-only
Inspect

List bank accounts. Increase API: GET /accounts. Filter by entity and status (sent as status.in).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoAccount status filter (sent as status.in), e.g. open | closed.
entity_idNoOnly accounts belonging to this entity id.
increase_list_ach_transfersList ACH transfers
Read-only
Inspect

List ACH transfers (read-only observability; this server does NOT create transfers). Increase API: GET /ach_transfers. Filter by account and status (sent as status.in).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. pending_submission | submitted | returned.
account_idNoOnly ACH transfers for this account id.
increase_list_cardsList cards
Read-only
Inspect

List cards. Increase API: GET /cards. Filter by account and status (sent as status.in). Read-only; no card actions are exposed.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. active | disabled | canceled.
account_idNoOnly cards for this account id.
increase_list_check_transfersList check transfers
Read-only
Inspect

List check transfers (read-only observability; this server does NOT create transfers). Increase API: GET /check_transfers. Filter by account.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
account_idNoOnly check transfers for this account id.
increase_list_declined_transactionsList declined transactions
Read-only
Inspect

List declined transactions. Increase API: GET /declined_transactions. Filter by account.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
account_idNoOnly declined transactions for this account id.
increase_list_entitiesList entities
Read-only
Inspect

List entities (the people/businesses — KYC records — that own accounts). Increase API: GET /entities. Filter by status (sent as status.in).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. active | archived | disabled.
increase_list_external_accountsList external accounts
Read-only
Inspect

List external (counterparty) bank accounts registered in Increase. Increase API: GET /external_accounts. Filter by status (sent as status.in).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. active | archived.
increase_list_pending_transactionsList pending transactions
Read-only
Inspect

List pending (not-yet-settled) transactions. Increase API: GET /pending_transactions. Filter by account and status (sent as status.in).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. pending | complete.
account_idNoOnly pending transactions for this account id.
increase_list_real_time_payments_transfersList Real-Time Payments transfers
Read-only
Inspect

List Real-Time Payments (RTP) transfers (read-only observability; this server does NOT create transfers). Increase API: GET /real_time_payments_transfers. Filter by account.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
account_idNoOnly RTP transfers for this account id.
increase_list_transactionsList transactions
Read-only
Inspect

List settled transactions. Increase API: GET /transactions. Filter by account, category (sent as category.in), and created date range (created_at.after / created_at.before).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
categoryNoTransaction category filter (sent as category.in).
account_idNoOnly transactions for this account id.
created_afterNoISO 8601 timestamp; only transactions created at/after this (sent as created_at.after).
created_beforeNoISO 8601 timestamp; only transactions created before this (sent as created_at.before).
increase_list_wire_transfersList wire transfers
Read-only
Inspect

List wire transfers (read-only observability; this server does NOT create transfers). Increase API: GET /wire_transfers. Filter by account.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
account_idNoOnly wire transfers for this account id.
increase_lookup_routing_numberLook up routing number
Read-only
Inspect

Look up a 9-digit ABA routing number to see which real-time services (ACH, Real-Time Payments, wire) that bank supports. Increase API: GET /routing_numbers.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
routing_numberYes9-digit ABA routing number to look up (query param routing_number).

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.