Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Tender MCP
T
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:09:27 AM

Tender MCP

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Government tender search for AI agents. UK, EU & US procurement opportunities..

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "tender-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "tender-mcp"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

smithery badge

Tender MCP β€” Government Opportunity Intelligence for AI Agents

ToolRank

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

config.json
{
  "tender": {
    "url": "https://tender-mcp-production.up.railway.app"
  }
}

Or via Smithery:

Terminal
npx -y @smithery/cli@latest mcp add OjasKord/tender-mcp

Harness Integration

Claude Code / Claude Desktop (.mcp.json)

config.json
{
  "mcpServers": {
    "tender": {
      "type": "http",
      "url": "https://tender-mcp-production.up.railway.app"
    }
  }
}

LangChain (Python)

server.ts
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)

server.ts
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.

config.json
{ "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.

config.json
{ "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.

config.json
{
  "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.

config.json
{ "keywords": ["cybersecurity", "managed SOC", "penetration testing"] }

get_award_history (Paid only)

Past award winners for a keyword. Use for competitive intelligence before bidding.

config.json
{ "keyword": "cybersecurity", "sources": ["uk"] }

Recommended Workflow

Find and score opportunities (3 calls):

  1. search_tenders β€” find active tenders matching your sector
  2. score_tender_fit β€” AI ranks by relevance, filters noise
  3. get_tender_detail β€” full details on top matches

Daily monitoring (1 call):

  • get_daily_digest β€” new tenders every morning before competitors see them

Data Sources

SourceCoverageUpdate Frequency
UK Contracts Finder (contractsfinder.service.gov.uk)All UK public sector contractsReal-time
EU TED (ted.europa.eu)All EU member state procurementReal-time
US SAM.gov (sam.gov)All US federal opportunitiesDaily

Every response includes source_url and checked_at.

Pricing

PlanSearchesPrice
Free10/monthNo API key required
Starter500-call bundle$8
Pro2,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

Related MCP Servers

View all in Developer Tools View all alternatives
  • BoostedTravel logoBoostedTravel

    Flight search & booking for AI agents. 400+ airlines, $20-50 cheaper than OTAs.

    πŸ’» Developer Tools0 views
    Compare vs BoostedTravel β†’
  • C
    Codealive Mcp

    Semantic code search and analysis from CodeAlive for AI assistants and agents.

    πŸ’» Developer Tools0 views
    Compare vs Codealive Mcp β†’
  • CodeNib logoCodeNib

    Ranked codebase search and static symbol navigation for coding agents.

    πŸ’» Developer Tools0 views
    Compare vs CodeNib β†’
  • A
    Agent Skills Search Server

    Search and discover Agent Skills from the skills.sh registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs Agent Skills Search Server β†’

Frequently Asked Questions about Tender MCP

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "tender-mcp": { "command": "npx", "args": ["-y", "Tender MCP"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewTender MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/tender-mcp?style=directory)](https://allmcps.com/mcp/tender-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/tender-mcp"><img src="https://allmcps.com/api/badge/tender-mcp?style=directory" alt="Tender MCP on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Tender MCP β†’Install in Claude DesktopInstall in CursorInstall in VS Code