procurement-agent-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., "@procurement-agent-mcpStart procurement for the items in project Falcon."
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.
Agentic Procurement Workflow
Disclaimer: All data in this project is synthetic, modeled on real manufacturing scenarios. The taskboard, mail, and ERP systems are local mock services. Not affiliated with or derived from any employer's systems.
Problem
Procurement is expensive and time-consuming. In my experience, engineers routinely spend 4 or more hours per week on it — sending requests for quotes (RFQ), waiting on quotes, parsing through quotes, loading items into the ERP, creating purchase requisitions (PRQ), sending them to purchasing, waiting on confirmation, and then posting tracking information in a project management system. At a $50/hr base wage (~$70/hr burdened), that is roughly $14,000 per engineer per year, before counting the opportunity cost of an engineer not engineering. Multiply this across a department.
The process is simple and repetitive, but it is not easily automatable. Quotes come in all shapes and sizes. Items don't line up between the RFQ and the quotes that come back — Vendor A splits your line 3 into two lines, Vendor B substitutes an equivalent part without saying so, and Vendor C skips it entirely. "Compare line 3" stops having an obvious meaning. The same part also goes by several names (HHCS, hex head cap screw, hex bolt), so matching a free-text description to a catalog item number is its own problem. Lead times are never concrete. Any tool that quietly guesses at these will produce wrong answers that look right.
Procurement also cannot be fully automated, because the financial and commercial risk is real. Errors cost money or project timeline, and both are painful to unwind. For that reason this workflow uses human gates. A human verifies the agent's work before a PRQ is sent, and a human creates and sends the PO. The agent never sends a PO.
Related MCP server: TenderAI
Approach
This workflow utilizes an AI agent to take care of all the tedious data entry and administrative work of the procurement process, while still keeping a human in the loop to confirm critical steps in the workflow.
The human operator selects a project's item list and tells the agent to begin procurement.
The agent generates RFQ emails. The email contains quantity needed, part number, description, and drawings (if applicable). It requests a quote that includes pricing and lead time. The agent sends the emails to the various vendor representatives.
Upon the first vendor quote received, a configurable quote window timer begins. Once all expected quotes are returned or the timer runs out, the agent processes the quotes. If a quote is not able to be processed or items don't match up, the human operator is notified. At this point the human operator will disposition the issue. Once dispositioned, the operator can manually tell the agent what items correlate to price and lead time. Once all items are resolved, the agent creates a report for the human operator.
[HUMAN GATE] The human operator then reviews the report and tells the agent which vendor's quote to use.
The agent loads the resolved lines into the ERP. The item number is the key, so the agent writes only the item number, quantity, awarded vendor, cost, and lead time. The ERP's item master supplies the rest of the record. Nothing is written against a guessed item number.
The agent assembles the PRQ (line items, awarded vendor, pricing, lead times, attached quotes and drawings) and submits it to purchasing. This write is guarded with an idempotency key and logged, so a retry cannot submit it twice.
[HUMAN GATE] The purchasing department representative reviews the PRQ and quote. If all looks good, purchasing creates a PO, sends it to the vendor, and the ERP is populated with the PO number. The agent never creates the PO in this workflow.
The agent will poll the ERP system. Once it detects that items from the PRQ had a PO created, it uploads that PO number to project management software where the human operator can keep track of order progress.
Every agent action is logged with its inputs, outputs, and a timestamp. Write operations carry an idempotency key, so re-running a step (a retry after a timeout, a reconciliation loop that fires twice) never double-posts to the ERP or re-sends an RFQ.
Architecture
An MCP server exposes the procurement workflow as a set of tools an agent can call. Behind those tools sit a SQLite state layer, a quote parsing pipeline, an item resolution step, and HTTP clients for the taskboard, mail, and ERP systems. All three backends are local mock services.
Architecture diagram and component breakdown to follow.
Demo
WIP
How to Run
Requires uv and Python 3.12 or newer.
git clone git@github.com:njsav26/procurement-agent-mcp.git
cd procurement-agent-mcp
uv sync
uv run pytestWhat I Would Do Next
Known Limitations
Quote extraction is template driven. New vendors need new templates.
Edge cases are flagged for human intervention rather than handled.
Cannot handle scanned or image-only PDFs. There is no OCR capability.
What a Production Version Requires
Real authentication against the real systems
Logging and metrics
Retry logic for failed writes to the ERP
Access control — who can approve quotes and trigger a write
What I Would Design Differently
TBD after implementation
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.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server designed to automate tender and RFQ pricing by extracting requirements from documents and building structured pricing models. It enables users to calculate final costs, compare market rates, and generate styled HTML pricing reports for PDF export.Last updated
- Flicense-qualityDmaintenanceAn MCP server that automates government and enterprise tender workflows, including RFP parsing, proposal generation, and compliance tracking. It provides 18 specialized tools for technical and financial proposal assembly, partner coordination, and hybrid search across past proposal archives.Last updated1
- Alicense-qualityCmaintenanceAn MCP-only server for evidence-based EPC tender screening that enables AI agents to run a full screening workflow, extract requirements, match company profiles, generate compliance matrices, and produce bid/no-bid advisory memos.Last updatedMIT
- Alicense-qualityCmaintenanceMCP server for integrating manufacturing systems (MES/ERP/quality/maintenance) with LLM agents, enabling event ingestion, incident triage, approval workflows, and RAG-based knowledge retrieval.Last updatedMIT
Related MCP Connectors
Dispatch litigation work to legal-services vendors from any MCP-compatible AI workflow.
MCP Server for agents to onboard, pay, and provision services autonomously with InFlow
Hosted MCP for denial, prior auth, reimbursement, workflow validation, batch scoring, and feedback.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/njsav26/procurement-agent-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server