Inferventis Tools MCP Server

A production-ready [Model Context Protocol](https://modelcontextprotocol.io) server any AI agent can call over Streamable HTTP. Real-time stocks

Local serverstdioTypeScript

What is the Inferventis Tools MCP server?

A production-ready Model Context Protocol server any AI agent can call over Streamable HTTP. Real-time stocks, crypto, FX, Open Banking, Stripe, news, and web reading — all in one endpoint. Exposed over MCP by the inferventis tools mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Its toolset

Everything the assistant can do here goes through one of these:

  • platform_tool_finder — tool_finder.json
  • web_news_headlines — news_headlines.json
  • web_url_reader — url_reader.json
  • currency_convert — currency_convert.json
  • currency_convert_lite — currency_convert_basic.json
  • currency_convert_open — real_wesbos_currency.json
  • currency_fx_lite — fx_converter.json
  • currency_rates — real_frankfurter_currency.json
  • financial_calculator — financial_calculator.json
  • financial_calculator_lite — financial_calculator_basic.json
  • crypto_price — crypto_price.json
  • crypto_price_lite — crypto_price_basic.json

Configuration

You will need 2 environment variables: TRUELAYER_ACCESS_TOKEN, STRIPE_SECRET_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Inferventis Tools.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the inferventis tools mcp server does with a few real requests.

When to reach for it

This sits in the payments and commerce group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Inferventis Tools's toolset — platform_tool_finder, web_news_headlines, web_url_reader and 11 more — is a fair guide to whether it matches your workflow. It is maintained by bankee-ai; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
platform_tool_findertool_finder.json
web_news_headlinesnews_headlines.json
web_url_readerurl_reader.json
currency_convertcurrency_convert.json
currency_convert_litecurrency_convert_basic.json
currency_convert_openreal_wesbos_currency.json
currency_fx_litefx_converter.json
currency_ratesreal_frankfurter_currency.json
financial_calculatorfinancial_calculator.json
financial_calculator_litefinancial_calculator_basic.json
crypto_pricecrypto_price.json
crypto_price_litecrypto_price_basic.json
crypto_fx_ratesreal_coinapi_fx.json
stock_quotefinnhub_stock_quote.json

How to install the Inferventis Tools MCP server

{
  "mcpServers": {
    "inferventis": {
      "type": "streamableHttp",
      "url": "https://mcp-server-295985738387.europe-west1.run.app/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
TRUELAYER_ACCESS_TOKENCredential the server authenticates with.Yes
STRIPE_SECRET_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Inferventis Tools to platform tool finder.
  • Use Inferventis Tools to web news headlines.
  • Use Inferventis Tools to web url reader.

Frequently asked questions

It connects Inferventis Tools to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (platform_tool_finder, web_news_headlines, web_url_reader, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Inferventis Tools directly.