The Model Context Protocol (MCP) is an open standard that lets AI assistants call external tools and data sources. FINTECH_MCP exposes a remote MCP endpoint at:
https://www.fintechmcp.app/mcp
Add this URL to any MCP-compatible client and your AI assistant will gain six new tools:
fintech_accounts_list,
fintech_transactions_list,
fintech_spending_by_category,
fintech_transactions_by_category,
fintech_investment_holdings_list, and
fintech_investment_transactions_list.
CLAUDE_CODE (CLI)
claude mcp add --transport http FINTECH_MCP https://www.fintechmcp.app/mcp
claude mcp add --transport http --scope project FINTECH_MCP https://www.fintechmcp.app/mcp
claude mcp list
claude mcp remove FINTECH_MCP
~/.claude.json.
Project-scoped servers are stored in .mcp.json at the root of your project — safe to commit to version control.
CLAUDE_DESKTOP
https://www.fintechmcp.app/mcpclaude_desktop_config.json file
(which is for local stdio servers only).
CURSOR
{
"mcpServers": {
"FINTECH_MCP": {
"url": "https://www.fintechmcp.app/mcp"
}
}
}
{
"mcpServers": {
"FINTECH_MCP": {
"url": "https://www.fintechmcp.app/mcp"
}
}
}
Cmd/Ctrl+Shift+P → Reload Window).FINTECH_MCP appears as connected.WINDSURF
{
"mcpServers": {
"FINTECH_MCP": {
"serverUrl": "https://www.fintechmcp.app/mcp"
}
}
}
~/.codeium/windsurf/mcp_config.json.FINTECH_MCP entry shown above (merge with any existing servers).${env:MY_VAR} interpolation in header values
if you ever need to pass a static API key instead of using OAuth.
CHATGPT
https://www.fintechmcp.app/mcpGEMINI_CLI
~/.gemini/settings.json.
It supports OAuth via dynamic discovery — Gemini will auto-discover the FINTECH_MCP auth server and handle the login.
{
"mcpServers": {
"FINTECH_MCP": {
"httpUrl": "https://www.fintechmcp.app/mcp"
}
}
}
npm install -g @google/gemini-cli~/.gemini/settings.json and add the entry above.gemini to start an interactive session."headers": {"Authorization": "Bearer ftm_..."}
if you prefer not to use OAuth.
CONTINUE.DEV
ftm_.
mcpServers:
- name: FINTECH_MCP
type: streamable-http
url: https://www.fintechmcp.app/mcp
requestOptions:
headers:
Authorization: Bearer ftm_your_api_key_here
{
"mcpServers": [
{
"name": "FINTECH_MCP",
"transport": {
"type": "streamable-http",
"url": "https://www.fintechmcp.app/mcp",
"requestOptions": {
"headers": {
"Authorization": "Bearer ftm_your_api_key_here"
}
}
}
}
]
}
ftm_your_api_key_here with your actual key.ZED
mcp-remote bridge, which runs as a local stdio proxy
and forwards requests to the remote server using your API key.
ftm_.
{
"context_servers": {
"FINTECH_MCP": {
"source": "custom",
"command": {
"path": "npx",
"args": [
"-y",
"mcp-remote",
"https://www.fintechmcp.app/mcp",
"--header",
"Authorization:Bearer ftm_your_api_key_here"
]
}
}
}
}
Cmd+, → click Open JSON settings.context_servers block above, replacing the placeholder key.mcp-remote via npx on first run.