Ntropy MCP server
MCP server for enriching banking data using the Ntropy API
Overview
Ntropy MCP is a server designed to enrich banking data using the Ntropy API, enabling LLM agents to easily access and utilize financial data.
To use Ntropy MCP, first obtain your Ntropy API key from ntropy.com. Then, run the server using the command: uvx ntropy-mcp --api-key YOUR_NTROPY_API_KEY.
- Verify connection to the Ntropy API. - Create, update, and delete account holders. - Enrich individual and bulk transactions. - Retrieve details of account holders and transactions.
- Enriching bank transactions for better financial insights.
- Managing account holder information efficiently.
- Integrating financial data into applications for enhanced user experience.
Add to your AI client
Use these steps to connect Ntropy MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"ntropy-mcp-ntropy-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ntropy-mcp-ntropy-network"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"ntropy-mcp-ntropy-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ntropy-mcp-ntropy-network"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"ntropy-mcp-ntropy-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ntropy-mcp-ntropy-network"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"ntropy-mcp-ntropy-network": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ntropy-mcp-ntropy-network"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ntropy-mcp-ntropy-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ntropy-mcp-ntropy-network"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"ntropy-mcp-ntropy-network": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ntropy-mcp-ntropy-network"
]
}
}
}FAQ
Can I use Ntropy MCP without an API key?
No, an API key is required to access the Ntropy API.
Is there a limit on the number of transactions I can enrich?
The API allows bulk enrichment of transactions, but specific limits may apply based on your account type.
How can I debug issues with the server?
You can use the MCP inspector for debugging by running: `npx @modelcontextprotocol/inspector uvx ntropy-mcp --api-key YOUR_NTROPY_API_KEY`.