local-model-suitability-mcp 1.1.26 → 1.1.28
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 +3 -0
- package/glama.json +16 -6
- package/package.json +1 -1
- package/src/server.js +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.27] - 2026-06-29
|
|
4
|
+
- feat: add GET /.well-known/glama.json ownership endpoint for Glama registry verification
|
|
5
|
+
|
|
3
6
|
## [1.1.26] - 2026-06-28
|
|
4
7
|
- fix: gate email dedup — notifyGateHit now writes lms:gate_email:{ip} to Redis with 1-hour TTL; retries within the hour suppressed
|
|
5
8
|
- fix: 402 gate response agent_action changed to HALT_WORKFLOW; added retryable: false, retry_after_ms: null
|
package/glama.json
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"description": "Check whether a task can run on a local model instead of cloud. Saves money on every call that does not need cloud inference. AI-powered routing.",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
2
|
+
"$schema": "https://glama.ai/mcp/servers/schema.json",
|
|
3
|
+
"name": "Local Model Suitability MCP",
|
|
4
|
+
"description": "Check whether a task can run on a local model instead of cloud. Saves money on every call that does not need cloud inference. AI-powered routing. Returns LOCAL/CLOUD/EITHER verdict with cost saving estimate and specific local model recommendations.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"categories": [
|
|
7
|
+
"developer-tools"
|
|
8
|
+
],
|
|
9
|
+
"remote": {
|
|
10
|
+
"transport": "sse",
|
|
11
|
+
"url": "https://local-model-suitability-mcp-production.up.railway.app/sse"
|
|
12
|
+
},
|
|
7
13
|
"tools": [
|
|
8
14
|
{
|
|
9
15
|
"name": "check_local_viability",
|
|
10
16
|
"description": "Call BEFORE every cloud inference call. Returns LOCAL/CLOUD/EITHER verdict with cost saving estimate and specific local model recommendations."
|
|
11
17
|
}
|
|
12
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"links": {
|
|
20
|
+
"homepage": "https://kordagencies.com",
|
|
21
|
+
"npm": "https://www.npmjs.com/package/local-model-suitability-mcp"
|
|
22
|
+
}
|
|
13
23
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-model-suitability-mcp",
|
|
3
3
|
"mcpName": "io.github.OjasKord/local-model-suitability-mcp",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.28",
|
|
5
5
|
"description": "AI model router for agents. Checks whether a local model can handle the task before calling cloud inference. LOCAL/CLOUD verdict saves cost on every call.",
|
|
6
6
|
"main": "src/server.js",
|
|
7
7
|
"type": "module",
|
package/src/server.js
CHANGED
|
@@ -3,7 +3,7 @@ import { createHmac, timingSafeEqual } from 'crypto';
|
|
|
3
3
|
import { readFileSync, writeFileSync } from 'fs';
|
|
4
4
|
import Anthropic from '@anthropic-ai/sdk';
|
|
5
5
|
|
|
6
|
-
const VERSION = '1.1.
|
|
6
|
+
const VERSION = '1.1.27';
|
|
7
7
|
const FIRST_DEPLOYED = '2026-04-13T06:41:38Z';
|
|
8
8
|
const LIFETIME_CALLS_REDIS_KEY = 'lms:lifetime_calls';
|
|
9
9
|
const UPTIME_HEARTBEAT_KEY = 'lms:uptime:heartbeat_count';
|
|
@@ -707,6 +707,12 @@ const server = createServer(async (req, res) => {
|
|
|
707
707
|
return;
|
|
708
708
|
}
|
|
709
709
|
|
|
710
|
+
if (req.url === '/.well-known/glama.json' && req.method === 'GET') {
|
|
711
|
+
res.writeHead(200, { ...cors, 'Content-Type': 'application/json' });
|
|
712
|
+
res.end(JSON.stringify({ "$schema": "https://glama.ai/mcp/schemas/connector.json", "maintainers": [{ "email": "ojas@kordagencies.com" }] }));
|
|
713
|
+
return;
|
|
714
|
+
}
|
|
715
|
+
|
|
710
716
|
// Trial extension
|
|
711
717
|
if (req.url === '/trial-extension' && req.method === 'POST') {
|
|
712
718
|
let body = '';
|