tender-mcp 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.2.0] - 2026-04-21
2
+ ### Changed
3
+ - Consolidated from 5 tools to 2: search_tenders and get_tender_intelligence
4
+ - search_tenders now runs AI fit scoring automatically inline
5
+ - get_tender_intelligence replaces get_daily_digest and get_award_history with mode parameter (DAILY_DIGEST or AWARD_HISTORY)
6
+ - Free tier preview for intelligence tool returns real count before gating full results
7
+ - Upgrade hooks in every response with specific conversion messaging
8
+
1
9
  # Changelog — Tender MCP
2
10
 
3
11
  ## v1.0.0 — 2026-04-09
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tender-mcp",
3
- "version": "1.2.0",
4
3
  "mcpName": "io.github.OjasKord/tender-mcp",
4
+ "version": "1.2.1",
5
5
  "description": "Government tender search and AI opportunity scoring for AI agents. UK Contracts Finder, EU TED, US SAM.gov.",
6
6
  "main": "src/server.js",
7
7
  "scripts": {
@@ -14,13 +14,30 @@
14
14
  "procurement",
15
15
  "government",
16
16
  "contracts",
17
- "bidding"
17
+ "bidding",
18
+ "government-contracts",
19
+ "sam-gov",
20
+ "eu-ted",
21
+ "contracts-finder",
22
+ "bid-scoring",
23
+ "ai-scoring",
24
+ "public-sector",
25
+ "rfp",
26
+ "rfq",
27
+ "opportunity-search",
28
+ "validator"
18
29
  ],
19
- "author": "Kord Agencies",
30
+ "author": "Kord Agencies Pte Ltd <ojas@kordagencies.com>",
20
31
  "license": "UNLICENSED",
21
32
  "homepage": "https://kordagencies.com",
22
33
  "repository": {
23
34
  "type": "git",
24
- "url": "https://github.com/OjasKord/tender-mcp.git"
35
+ "url": "git+https://github.com/OjasKord/tender-mcp.git"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/OjasKord/tender-mcp/issues"
39
+ },
40
+ "engines": {
41
+ "node": ">=18.0.0"
25
42
  }
26
43
  }
package/server.json CHANGED
@@ -1,26 +1,24 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.OjasKord/tender-mcp",
4
- "description": "Government tender search for AI agents. UK, EU & US procurement opportunities..",
5
4
  "title": "Tender MCP",
5
+ "description": "Government tender search for AI agents. UK, EU and US procurement opportunities.",
6
+ "version": "1.2.1",
7
+ "websiteUrl": "https://kordagencies.com",
6
8
  "repository": {
7
9
  "url": "https://github.com/OjasKord/tender-mcp",
8
10
  "source": "github"
9
11
  },
10
- "version": "1.0.1",
11
12
  "packages": [
12
13
  {
13
14
  "registryType": "npm",
14
- "registryBaseUrl": "https://registry.npmjs.org",
15
15
  "identifier": "tender-mcp",
16
- "version": "1.0.1",
17
- "transport": { "type": "stdio" }
16
+ "version": "1.2.1",
17
+ "transport": { "type": "stdio" },
18
+ "environmentVariables": [
19
+ { "name": "ANTHROPIC_API_KEY", "description": "Anthropic API key for AI-powered tender scoring", "isRequired": true, "isSecret": true }
20
+ ]
18
21
  }
19
22
  ],
20
- "remotes": [
21
- {
22
- "type": "streamable-http",
23
- "url": "https://tender-mcp-production.up.railway.app"
24
- }
25
- ]
23
+ "remotes": [{ "type": "streamable-http", "url": "https://tender-mcp-production.up.railway.app" }]
26
24
  }