npm tender-mcpstreamable-httpMITupdated 15d ago
Find, score, and monitor government contract opportunities across UK, EU, and US. AI-powered relevance scoring so your agent surfaces the right opportunities — not just keyword matches.
What can you do with Tender MCP?
Tender MCP — Government Opportunity Intelligence for AI Agents
Find, score, and monitor government contract opportunities across UK, EU, and US. AI-powered relevance scoring so your agent surfaces the right opportunities — not just keyword matches.
Free tier: 10 searches/month. No API key required. Just connect and go.
Quick Start
{
"tender": {
"url": "https://tender-mcp-production.up.railway.app"
}
}
Or via Smithery:
npx -y @smithery/cli@latest mcp add OjasKord/tender-mcp
Harness Integration
Claude Code / Claude Desktop (.mcp.json)
{
"mcpServers": {
"tender": {
"type": "http",
"url": "https://tender-mcp-production.up.railway.app"
}
}
}
LangChain (Python)
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"tender": {
"url": "https://tender-mcp-production.up.railway.app",
"transport": "http"
}
})
tools = await client.get_tools()
OpenAI Agents SDK (Python)
from agents import Agent, HostedMCPTool
agent = Agent(
name="Assistant",
tools=[HostedMCPTool(tool_config={
"type": "mcp",
"server_label": "tender",
"server_url": "https://tender-mcp-production.up.railway.app",
"require_approval": "never"
})]
)
LangGraph
Same as LangChain above — langchain-mcp-adapters works with LangGraph natively.
Why Use This
Any business that sells to government needs to monitor tender opportunities. But searching three separate government portals daily, reading hundreds of notices, and manually judging relevance takes hours. Tender MCP does it in seconds — search UK, EU, and US simultaneously, then let AI score which opportunities actually match your capabilities.
Tools
search_tenders
Search active government tenders across UK Contracts Finder, EU TED, and US SAM.gov simultaneously. Returns normalised results with source_url and checked_at.
{ "keyword": "cybersecurity", "sources": ["uk", "eu"], "days_old": 14 }
get_tender_detail
Full details for a specific tender — complete description, all deadlines, contact details, award criteria.
{ "tender_id": "ocds-h6vhtk-...", "source": "uk" }
score_tender_fit (AI-powered — NOT a keyword match)
AI scores each tender 0-100 against a company capability profile. Returns BID/INVESTIGATE/SKIP recommendation with specific reasons. Saves hours of manual review.
{
"tenders": [...],
"company_profile": "We are a 50-person UK cybersecurity firm specialising in penetration testing and SOC services for public sector clients. We hold SC clearance.",
"min_score": 60
}
get_daily_digest (Paid only)
All new tenders published in the last 24 hours matching your keywords. Run daily as a morning briefing.
{ "keywords": ["cybersecurity", "managed SOC", "penetration testing"] }
get_award_history (Paid only)
Past award winners for a keyword. Use for competitive intelligence before bidding.
{ "keyword": "cybersecurity", "sources": ["uk"] }
Recommended Workflow
Find and score opportunities (3 calls):
search_tenders— find active tenders matching your sectorscore_tender_fit— AI ranks by relevance, filters noiseget_tender_detail— full details on top matches
Daily monitoring (1 call):
get_daily_digest— new tenders every morning before competitors see them
Data Sources
| Source | Coverage | Update Frequency |
|---|---|---|
| UK Contracts Finder (contractsfinder.service.gov.uk) | All UK public sector contracts | Real-time |
| EU TED (ted.europa.eu) | All EU member state procurement | Real-time |
| US SAM.gov (sam.gov) | All US federal opportunities | Daily |
Every response includes source_url and checked_at.
Pricing
| Plan | Searches | Price |
|---|---|---|
| Free | 10/month | No API key required |
| Starter | 500-call bundle | $8 |
| Pro | 2,000-call bundle | $28 |
Upgrade at kordagencies.com
Reliability
- Uptime monitored every 5 minutes
- Version history in CHANGELOG.md
- Health endpoint:
GET /health - Note: Government portal APIs experience occasional downtime — errors include explanation and retry guidance
Legal
Tender data sourced directly from official government portals. We do not log or store your query content. Always verify tender deadlines and details directly with the contracting authority before submitting a bid — deadlines change. Results are for informational purposes only. Maximum liability limited to 3 months subscription fees. Full terms: kordagencies.com/terms.html
Connect
- Website: kordagencies.com
- Contact: ojas@kordagencies.com
Install
Add Tender MCP to your client. Pick the one you use.
{
"servers": {
"tender-mcp": {
"type": "http",
"url": "https://tender-mcp-production.up.railway.app"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add tender-mcp -- npx -y tender-mcpcodex mcp add tender-mcp -- npx -y tender-mcpamp mcp add tender-mcp -- npx -y tender-mcp{
"mcpServers": {
"tender-mcp": {
"command": "npx",
"args": [
"-y",
"tender-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"tender-mcp": {
"command": "npx",
"args": [
"-y",
"tender-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"tender-mcp": {
"command": "npx",
"args": [
"-y",
"tender-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"tender-mcp": {
"command": "npx",
"args": [
"-y",
"tender-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"tender-mcp": {
"command": "npx",
"args": [
"-y",
"tender-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"tender-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"tender-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"tender-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"tender-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y tender-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 8 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.2.25Latest | Jun 25, 2026 |
| 1.2.24 | Jun 24, 2026 |
| 1.2.6 | May 2, 2026 |
| 1.2.5 | Apr 28, 2026 |
| 1.2.4 | Apr 26, 2026 |
| 1.2.3 | Apr 26, 2026 |
| 1.2.2 | Apr 26, 2026 |
| 1.2.1 | Apr 23, 2026 |
| 1.2.0 | Apr 21, 2026 |
| 1.0.1 | Apr 10, 2026 |