dep-oracle 1.1.4 → 1.2.0

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/server.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.ertugrulakben/dep-oracle",
4
+ "version": "1.2.0",
5
+ "description": "Predictive dependency security engine. Trust scores, zombie detection, blast radius analysis.",
6
+ "repository": {
7
+ "url": "https://github.com/ertugrulakben/dep-oracle",
8
+ "source": "github"
9
+ },
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "dep-oracle",
14
+ "version": "1.2.0",
15
+ "runtimeHint": "node",
16
+ "transport": {
17
+ "type": "stdio"
18
+ }
19
+ }
20
+ ],
21
+ "tools": [
22
+ {
23
+ "name": "dep_oracle_scan",
24
+ "description": "Scan a project's dependency tree and generate trust scores for all packages."
25
+ },
26
+ {
27
+ "name": "dep_oracle_trust_score",
28
+ "description": "Get the trust score (0-100) for a single package."
29
+ },
30
+ {
31
+ "name": "dep_oracle_blast_radius",
32
+ "description": "Analyze the blast radius of a dependency if it were compromised."
33
+ },
34
+ {
35
+ "name": "dep_oracle_zombies",
36
+ "description": "List all zombie dependencies with no maintenance activity in 12+ months."
37
+ },
38
+ {
39
+ "name": "dep_oracle_suggest_migration",
40
+ "description": "Get safer alternative package suggestions for a given dependency."
41
+ },
42
+ {
43
+ "name": "dep_oracle_typosquat_check",
44
+ "description": "Check whether a package name is a potential typosquat of a popular package."
45
+ },
46
+ {
47
+ "name": "dep_oracle_compare",
48
+ "description": "Compare two packages side-by-side by computing trust scores for both."
49
+ },
50
+ {
51
+ "name": "dep_oracle_report",
52
+ "description": "Generate a JSON report for a project. Optionally writes to a file."
53
+ }
54
+ ]
55
+ }