Rftools MCP Server

MCP server for rftools.io — 213 RF & electronics calculators for AI agents via the MCP

Local serverstdioTypeScript

What is the Rftools MCP MCP server?

Rftools MCP MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for rftools.io — 213 RF & electronics calculators for AI agents via the MCP.

What you get

Give Claude, Cursor, or any MCP-compatible AI assistant access to validated engineering calculators and heavy server-side simulations. Microstrip impedance, link budgets, filter design, converter sizing, antenna patterns, and 200+ more calculators — plus NEC2 antenna simulation, FDTD, Monte Carlo, SMPS analysis, EMI estimation, and more, all callable as MCP tools.

  • Use simplified formulas that omit corrections (e.g. copper thickness in microstrip)
  • Confuse units (mils vs mm, dBm vs dBW)
  • Accumulate rounding errors
  • Confidently present wrong answers

Setting it up

Installation goes through your MCP client rather than a global install: point it at rftools-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Rftools MCP is connected, these are the calls the assistant has available:

  • Cursor — The Cursor tool exposed by this server
  • Windsurf — The Windsurf tool exposed by this server
  • list_calculators — List available calculators, optionally filtered by category
  • get_calculator_info — Get detailed info about a calculator — inputs with units/defaults, outputs, and the formula used
  • run_calculation — Run a calculator with specific inputs. Returns results with units and a link to the interactive version on rftools.io. Runs locally — instant, no
  • list_simulation_tools — List all 13 available simulation tools with their jobType identifiers and parameter reference
  • run_simulation — Submit a simulation job and wait for the result. Returns the full result JSON along with a link to the interactive results page on rftools.io

Configuration and credentials

You will need one environment variable: RFTOOLS_API_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.

Before you rely on it

  • 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.
  • 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 rftools mcp mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Rftools MCP's toolset — Cursor, Windsurf, list_calculators and 4 more — is a fair guide to whether it matches your workflow. It is maintained by antonpogrebenko-public; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Rftools MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
CursorThe Cursor tool exposed by this server.
WindsurfThe Windsurf tool exposed by this server.
list_calculatorsList available calculators, optionally filtered by category.
get_calculator_infoGet detailed info about a calculator — inputs with units/defaults, outputs, and the formula used.
run_calculationRun a calculator with specific inputs. Returns results with units and a link to the interactive version on rftools.io. Runs locally — instant, no quota consumed.
list_simulation_toolsList all 13 available simulation tools with their jobType identifiers and parameter reference.
run_simulationSubmit a simulation job and wait for the result. Returns the full result JSON along with a link to the interactive results page on rftools.io.

How to install the Rftools MCP MCP server

{
  "mcpServers": {
    "rftools": {
      "command": "npx",
      "args": ["-y", "rftools-mcp"],
      "env": {
        "RFTOOLS_API_KEY": "rfc_your_key_here"
      }
    }
  }
}

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

Configuration

VariableDescriptionRequired
RFTOOLS_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Rftools MCP to Cursor.
  • Use Rftools MCP to Windsurf.
  • Use Rftools MCP to list calculators.

Frequently asked questions

It connects Rftools MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Cursor, Windsurf, list_calculators, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Rftools MCP directly.