npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tender-mcp

v1.3.1

Published

Government tender search for AI agents. UK, EU, US contracts with AI bid scoring. BID/SKIP verdict with deadline and value in one call.

Readme

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

{
  "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):

  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

| 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