Mmcp.market

Electronics Rfq Agent MCP server

by RudrenduPaul·io.github.RudrenduPaul/electronics-rfq-agent·v0.3.2

AI quoting agent for electronics distributors. RFQ in, quote out via MCP tools.

A92/100grade A
What users say
No reviews yet
Be the first
Safety scan
A92/100

full report

Adoption
Growing

0 stars31 downloads/wk

Reviews

Write one

Nobody has reviewed Electronics Rfq Agent yet.

If you have run it, two minutes of your experience saves the next person an afternoon.

Electronics Rfq Agent tools (3)

write = sends, deletes, buys or posts

Read from the package source without running it. The installed server may list more.

  • audit_quote

    Read a saved quote JSON file and return a found/substituted/not-found breakdown.

  • lookup_part

    Look up a single part in the ERP catalog by exact part number.

  • quote_rfq

    Parse an RFQ document (PDF, Excel, Word, or plain text) and return a draft quote.

Public scan report

scanner v0.1.9 · 2026-09-21 · same rubric, same numbers if you re-run it

no findings
  • Code scan21 source files scanned25/25
  • –Live reliabilityno gateway calls yet and no remote to proben/a
  • –Tool poisoningtools not inspected (local package is not executed); not countedn/a
  • Auth qualitylocal package, no credentials required12/15
  • Maintenancelast push 3 days ago15/15
  • Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
Overall 92/100. Components that don't apply are left out of the denominator. Any critical finding is an F.RubricAppeal a findingJSON

What the publisher says

From the Electronics Rfq Agent repository's README, as published. We do not edit it. Read it on GitHub

<!-- mcp-name: io.github.RudrenduPaul/electronics-rfq-agent -->

Electronics RFQ Agent

Your sales engineers are spending 2-4 hours turning RFQ documents into quotes. This does it in seconds.

Electronics RFQ Agent is a Python library and CLI that reads RFQ documents (PDF, Excel, Word), looks up every line item against your ERP catalog, and outputs a draft quote. It connects to SAP, Epicor, Oracle, and Microsoft Dynamics through MCP servers, so it works with Claude, GPT-4, or any agent framework that speaks MCP.

Table of contents

  • Install
  • The problem this solves
  • Quickstart
  • Commands
  • API reference
  • How it differs from the alternatives
  • ERP support
  • Benchmarks
  • Integration matrix
  • Try it in Docker
  • Security
  • FAQ

Install

pip install electronics-rfq-agent-cli
# or
uv add electronics-rfq-agent-cli

To install from source instead:

git clone https://github.com/RudrenduPaul/electronics-rfq-agent
cd electronics-rfq-agent
pip install -e .
# or, with uv:
uv sync

Parsing RFQ documents (PDF, Excel, Word) calls the Anthropic API, so set ANTHROPICAPIKEY before running anything that touches a real document:

export ANTHROPIC_API_KEY="sk-ant-..."

You don't need this key to run erfa audit against an existing quote file, or to explore the CLI with --help. Only document parsing calls out to Claude.

The problem this solves

We were working with electronics distributors who had 3-5 sales engineers spending most of their day on quote entry. Every tool we found was either tied to one specific ERP or required a 6-month integration project. We wanted something that worked with what distributors already had, could be self-hosted (quote data is sensitive), and was actually extensible.

The MCP architecture means adding a new ERP is writing one file. The parser handles the document formats distributors actually send: hand-filled PDFs, multi-sheet Excel files, and the occasional scanned table.

Quickstart

No ERP system required to try it out; the mock backend ships with 200 realistic electronics parts. You do need ANTHROPICAPIKEY set, since parsing the RFQ document is still a real Claude call:

from electronics_rfq_agent import QuoteAgent
from electronics_rfq_agent.mcp.mock import MockERP

agent = QuoteAgent(erp=MockERP())
quote = agent.run_sync("path/to/rfq.xlsx")

for line in quote.lines:
    print(f"{line.rfq_line.part_number}: {line.status} @ {line.unit_price}")

print(quote.summary())

Shortened. The full README is on GitHub.

Nothing above is checked by us. What we check is on the safety report.

Install directly

claude mcp add electronics-rfq-agent -- uvx electronics-rfq-agent-cli
Add to Cursor

Electronics Rfq Agent: common questions

Is Electronics Rfq Agent MCP server safe?
Yes, by our scan: it is graded A (92/100). Read the Electronics Rfq Agent safety report
How do I install Electronics Rfq Agent?
It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
Does Electronics Rfq Agent need an API key?
Not as far as the registry entry and our scan can tell: no credentials are declared or required.
Is Electronics Rfq Agent maintained?
The last commit was 6 days ago (2026-09-18). The latest release is v0.3.2.
What can I use instead of Electronics Rfq Agent?
Servers from other publishers that do the same job: Warp Agent MCP server.

Alternatives to Electronics Rfq Agent

Same job from other publishers: the closest match first, then the best rated.

  • Warp Agent
    Quote, book, and track LTL, FTL, cargo van, and box-truck freight via the Warp API.
    B

More from RudrenduPaul →