A suite of free, single-purpose procurement and business writing tools powered by Groq AI inference.
12 tools included:
| Tool | Path | What it does |
|---|---|---|
| BidCheck | /rfp |
RFP/tender compliance gap analysis |
| PlainCheck | /plain |
Readability scoring + jargon audit |
| TimelineCheck | /timeline |
Date/deadline extraction from tenders |
| ScoreCheck | /score |
Bid score estimation per criterion |
| ObligCheck | /obligations |
Contract obligation + risk extraction |
| PQQCheck | /pqq |
PQQ question planner with evidence suggestions |
| ESGCheck | /esg |
ESG statement validation against GRI/SASB/TCFD |
| BidMate | /bidnobid |
Bid/no-bid opportunity evaluation |
| RiskCheck | /risk |
Contract risk clause identification |
| WinThesis | /winthesis |
Win theme builder from evaluation criteria |
| GrantCheck | /grant |
Grant application compliance checker |
| PriceCheck | /price |
Pricing schedule validation |
docker run -e GROQ_API_KEY=your_key_here -p 3000:3000 ghcr.io/vystartasv/agent-toolsThen open http://localhost:3000.
All 12 tools are available via MCP (Model Context Protocol) so any MCP-compatible agent (Claude, Cursor, etc.) can use them directly. Two options:
Proxies to tools.workswithagents.com — no prompt logic embedded, always up to date.
docker run -p 3100:3100 ghcr.io/vystartasv/agent-tools:mcp
# Agent connects to http://localhost:3100/mcp/toolsAll 12 prompts embedded, calls Groq directly. Fully offline, no domain dependency.
docker run -e GROQ_API_KEY=your_key -p 3101:3101 ghcr.io/vystartasv/agent-tools:mcp-direct
# Agent connects to http://localhost:3101/mcp/toolsMCP endpoints:
GET /mcp/tools— list all 12 tools with JSON Schema inputsPOST /mcp/tools/call— invoke any tool with typed parametersGET /mcp/health— health check
Without Docker:
# Option 1
npm start:mcp
# Option 2
GROQ_API_KEY=your_key npm run start:mcp-directgit clone https://github.com/vystartasv/agent-tools.git
cd agent-tools
# Web UI
docker build -t agent-tools .
docker run -e GROQ_API_KEY=your_key_here -p 3000:3000 agent-tools
# MCP proxy
docker build -f Dockerfile.mcp -t agent-tools:mcp .
docker run -p 3100:3100 agent-tools:mcp
# MCP direct
docker build -f Dockerfile.mcp-direct -t agent-tools:mcp-direct .
docker run -e GROQ_API_KEY=your_key -p 3101:3101 agent-tools:mcp-directOr without Docker:
cd selfhost
npm install express
GROQ_API_KEY=your_key node server.js # Web UI on :3000
node mcp-server.js # MCP proxy on :3100
GROQ_API_KEY=your_key node mcp-direct.js # MCP direct on :3101- Go to console.groq.com
- Sign up (free, no credit card)
- Create an API key
- Use it with
GROQ_API_KEY
Groq's free tier gives enough tokens daily for ~30-50 analyses.
No Docker needed — use the hosted version at tools.workswithagents.com.
- Docs & MCP reference: workswithagents.dev
- Product & pricing: workswithagents.com
- Source: github.com/vystartasv/agent-tools
MIT — use it, fork it, ship it.