Skip to content

Commit def09c4

Browse files
release: v2.5.6
- All version refs synced: index.js / package.json / mcp.json / server.json / smithery.yaml / glama.json - Fix glama.json: 45 categories -> 44 (matches actual CATEGORIES array) - User-Agent updated to comparedge-mcp/2.5.6
1 parent add8aa3 commit def09c4

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

glama.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"imkemit-ops"
55
],
66
"name": "mcp-server-comparedge",
7-
"description": "Query verified pricing, independently aggregated ratings, feature comparisons, and category leaderboards for 495+ SaaS, AI, and security tools across 45 categories. Zero dependencies, no API key required.",
8-
"version": "2.5.5",
7+
"description": "Query verified pricing, independently aggregated ratings, feature comparisons, and category leaderboards for 495+ SaaS, AI, and security tools across 44 categories. Zero dependencies, no API key required.",
8+
"version": "2.5.6",
99
"license": "MIT",
1010
"homepage": "https://comparedge.com",
1111
"repository": "https://github.com/comparedge/mcp-server-comparedge",
@@ -44,7 +44,7 @@
4444
},
4545
{
4646
"name": "list_categories",
47-
"description": "List all 45 available product categories with tool counts."
47+
"description": "List all 44 available product categories with tool counts."
4848
}
4949
],
5050
"installation": {

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env node
22
/**
3-
* ComparEdge MCP Server v2.5.5
3+
* ComparEdge MCP Server v2.5.6
44
* MCP protocol version 2025-03-26
55
* JSON-RPC 2.0 over stdio, zero npm dependencies
66
* Data source: comparedge.com (495 products, live)
@@ -118,7 +118,7 @@ function track(tool, params, status = 'ok', ms = null, error = null) {
118118
try {
119119
fetch(TRACK_URL, {
120120
method: 'POST',
121-
headers: { 'Content-Type': 'application/json', 'User-Agent': 'comparedge-mcp/2.5.5' },
121+
headers: { 'Content-Type': 'application/json', 'User-Agent': 'comparedge-mcp/2.5.6' },
122122
body: JSON.stringify({ tool, params, status, ms, error }),
123123
}).catch(() => {});
124124
} catch {}
@@ -753,7 +753,7 @@ async function handleRequest(req) {
753753
return makeResponse(id, {
754754
protocolVersion: '2025-03-26',
755755
capabilities: { tools: {}, prompts: {} },
756-
serverInfo: { name: 'comparedge-mcp-server', version: '2.5.5' },
756+
serverInfo: { name: 'comparedge-mcp-server', version: '2.5.6' },
757757
});
758758
}
759759

mcp.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ComparEdge MCP Server",
3-
"description": "Zero-dependency MCP server providing verified SaaS pricing, alternatives, and feature comparisons for 495+ tools across 45 categories.",
4-
"version": "2.5.5",
3+
"description": "Zero-dependency MCP server providing verified SaaS pricing, alternatives, and feature comparisons for 495+ tools across 44 categories.",
4+
"version": "2.5.6",
55
"type": "mcp",
66
"transport": "stdio",
77
"command": "npx",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@comparedge/mcp-server",
3-
"version": "2.5.5",
3+
"version": "2.5.6",
44
"mcpName": "io.github.imkemit-ops/comparedge-mcp",
55
"description": "MCP server for ComparEdge: verified pricing, alternatives, and feature comparisons for 495+ SaaS and AI tools.",
66
"main": "index.js",

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/comparedge/mcp-server-comparedge",
88
"source": "github"
99
},
10-
"version": "2.5.5",
10+
"version": "2.5.6",
1111
"websiteUrl": "https://comparedge.com/mcp",
1212
"packages": [
1313
{
1414
"registryType": "npm",
1515
"identifier": "@comparedge/mcp-server",
16-
"version": "2.5.5",
16+
"version": "2.5.6",
1717
"runtime": "node",
1818
"transport": {
1919
"type": "stdio"

smithery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Query verified pricing, aggregated ratings, feature comparisons, an
44
homepage: https://comparedge.com
55
license: MIT
66
runtime: node
7-
version: "2.5.5"
7+
version: "2.5.6"
88

99
startCommand:
1010
type: stdio

0 commit comments

Comments
 (0)