sophtron-mcp
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., "@sophtron-mcpShow my recent transactions"
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.
sophtron-mcp
A Claude Desktop MCP server for querying bank accounts, credit cards, and transactions via Sophtron's financial data API.
Patched for Claude — forked from sophtron/chagpt-mcp which was built exclusively for ChatGPT. This version replaces the OpenAI-specific transport, auth, and widget code with a standard stdio MCP server that works with Claude Desktop, Claude Code, and any MCP-compatible client.
Free alternative to requiring a paid budgeting app (Monarch Money, YNAB, etc.) as middleware. Sophtron provides free API access for individual use, connecting directly to 12,000+ financial institutions via their data aggregation layer.
Setup
1. Get Sophtron credentials
Sign up at sophtron.com and get your User ID and Access Key.
2. Install
git clone https://github.com/312-dev/sophtron-mcp.git
cd sophtron-mcp
npm install
npm run build3. Configure credentials
cp .env.example .env
# Edit .env with your Sophtron User ID and Access Key4. Add to Claude Desktop
Add this to your ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sophtron": {
"command": "node",
"args": ["/path/to/sophtron-mcp/dist/index.js"],
"env": {
"SOPHTRON_USER_ID": "your-user-id",
"SOPHTRON_ACCESS_KEY": "your-access-key"
}
}
}
}Or for Claude Code, add to ~/.claude.json under mcpServers:
{
"sophtron": {
"type": "stdio",
"command": "node",
"args": ["/path/to/sophtron-mcp/dist/index.js"],
"env": {
"SOPHTRON_USER_ID": "your-user-id",
"SOPHTRON_ACCESS_KEY": "your-access-key"
}
}
}5. Connect your bank
Bank connections are managed through Sophtron's infrastructure. To link your accounts:
Use the Sophtron widget through their ChatGPT integration or web portal to connect your bank
Once connected, this MCP server can query all your account data from Claude
Related MCP server: Sure MCP Server
Available tools
Tool | Description |
| Create or find a Sophtron customer profile (run first) |
| Look up a customer by name |
| List all linked bank connections |
| Manually save a connection reference |
| List all accounts across all connections |
| Get details for a specific account |
| List accounts for a specific bank connection |
| Get transactions for an account (defaults to last 90 days) |
| Get profile/identity info for a connection |
| Search for banks by name |
How it works
This server communicates with Sophtron's REST API using HMAC-SHA256 signed requests. Your credentials never leave your machine — they're used locally to sign API calls.
Data is cached locally in ~/.sophtron-mcp/:
customer.json— your Sophtron customer IDconnections.json— saved bank connection references
What changed from the original
The upstream repo is built for ChatGPT with:
OpenAI-specific widget rendering (
window.openai.setWidgetState)OAuth2 JWT authentication flow
Express HTTP transport only
In-memory connection storage
structuredContentandopenai/*metadata
This fork replaces all of that with:
Standard MCP stdio transport (works with any MCP client)
Direct HMAC API authentication (no OAuth needed)
Disk-based persistence
Clean tool definitions without vendor lock-in
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/312-dev/sophtron-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server