local-model-suitability-mcp 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/package.json +22 -6
  2. package/server.json +5 -3
package/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "name": "local-model-suitability-mcp",
3
- "version": "1.1.0",
3
+ "mcpName": "io.github.OjasKord/local-model-suitability-mcp",
4
+ "version": "1.1.1",
4
5
  "description": "Check whether a task can run on a local model instead of cloud. Save money on every call that does not need cloud inference.",
5
6
  "main": "src/server.js",
6
7
  "type": "module",
7
8
  "scripts": {
8
9
  "start": "node src/server.js"
9
10
  },
10
- "license": "UNLICENSED",
11
- "homepage": "https://kordagencies.com",
12
- "mcpName": "io.github.OjasKord/local-model-suitability-mcp",
13
11
  "keywords": [
14
12
  "mcp",
15
13
  "agent",
@@ -20,9 +18,27 @@
20
18
  "privacy",
21
19
  "cost-optimisation",
22
20
  "llm-routing",
23
- "inference-cost"
21
+ "inference-cost",
22
+ "local-inference",
23
+ "model-selection",
24
+ "ai-cost",
25
+ "lm-studio",
26
+ "llama"
24
27
  ],
28
+ "author": "Kord Agencies Pte Ltd <ojas@kordagencies.com>",
29
+ "license": "UNLICENSED",
30
+ "homepage": "https://kordagencies.com",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/OjasKord/local-model-suitability-mcp.git"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/OjasKord/local-model-suitability-mcp/issues"
37
+ },
38
+ "engines": {
39
+ "node": ">=18.0.0"
40
+ },
25
41
  "dependencies": {
26
42
  "@anthropic-ai/sdk": "^0.39.0"
27
43
  }
28
- }
44
+ }
package/server.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.OjasKord/local-model-suitability-mcp",
4
4
  "version": "1.1.0",
5
- "description": "Check if a task can run locally instead of cloud. Save money on every call that doesn't need cloud inference.",
5
+ "description": "Check if a task runs locally vs cloud. Save money on calls that don't need cloud inference.",
6
6
  "title": "Local Model Suitability MCP",
7
7
  "websiteUrl": "https://kordagencies.com",
8
8
  "repository": {
@@ -15,7 +15,9 @@
15
15
  "registryBaseUrl": "https://registry.npmjs.org",
16
16
  "identifier": "local-model-suitability-mcp",
17
17
  "version": "1.1.0",
18
- "transport": { "type": "stdio" },
18
+ "transport": {
19
+ "type": "stdio"
20
+ },
19
21
  "environmentVariables": [
20
22
  {
21
23
  "name": "ANTHROPIC_API_KEY",
@@ -32,4 +34,4 @@
32
34
  "url": "https://local-model-suitability-mcp-production.up.railway.app"
33
35
  }
34
36
  ]
35
- }
37
+ }