@cliwant/mcp-sam-gov 1.13.0 → 1.13.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/dist/server.js +1 -1
- package/package.json +1 -1
- package/src/server.ts +1 -1
package/dist/server.js
CHANGED
|
@@ -92,7 +92,7 @@ import { realpathSync } from "node:fs";
|
|
|
92
92
|
const SERVER_NAME = "mcp-sam-gov";
|
|
93
93
|
// Kept in lockstep with package.json / manifest.json / server.json.
|
|
94
94
|
// Keep in sync with package.json "version" (asserted at release; see CHANGELOG).
|
|
95
|
-
const SERVER_VERSION = "1.13.
|
|
95
|
+
const SERVER_VERSION = "1.13.1";
|
|
96
96
|
// ─── Tool input schemas (Zod) ────────────────────────────────────
|
|
97
97
|
const SamSearchInput = z.object({
|
|
98
98
|
query: z.string().optional().describe("Free-text title query"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cliwant/mcp-sam-gov",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"mcpName": "io.github.cliwant/mcp-sam-gov",
|
|
5
5
|
"description": "Most comprehensive keyless-first MCP server for US federal + state/local (SLED) contracting + spending + regulation: SAM.gov, USAspending, Federal Register, eCFR, Grants.gov, plus SLED procurement bids (OpenGov, Bonfire, ArcGIS, Socrata 53 hosts). 152 tools (147 need no API key), plug into Claude Desktop / Claude Code / Codex CLI / Cursor / Continue / Gemini CLI.",
|
|
6
6
|
"keywords": [
|
package/src/server.ts
CHANGED
|
@@ -108,7 +108,7 @@ import { realpathSync } from "node:fs";
|
|
|
108
108
|
const SERVER_NAME = "mcp-sam-gov";
|
|
109
109
|
// Kept in lockstep with package.json / manifest.json / server.json.
|
|
110
110
|
// Keep in sync with package.json "version" (asserted at release; see CHANGELOG).
|
|
111
|
-
const SERVER_VERSION = "1.13.
|
|
111
|
+
const SERVER_VERSION = "1.13.1";
|
|
112
112
|
|
|
113
113
|
// ─── Tool input schemas (Zod) ────────────────────────────────────
|
|
114
114
|
|