@trustlists/mcp 0.2.0 → 0.2.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/api/client.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +2 -1
package/dist/api/client.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* app server from the free lookup path and keeps the MCP useful when either
|
|
12
12
|
* public host has a transient problem.
|
|
13
13
|
*/
|
|
14
|
-
const PLUGIN_VERSION = '0.2.
|
|
14
|
+
const PLUGIN_VERSION = '0.2.1';
|
|
15
15
|
const USER_AGENT = `trustlists-mcp/${PLUGIN_VERSION}`;
|
|
16
16
|
const SOURCE_HEADER_VALUE = 'mcp';
|
|
17
17
|
const FETCH_TIMEOUT_MS = 15_000;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Spawned by Cursor / Claude Code via `npx -y @trustlists/mcp`.
|
|
6
6
|
* Speaks JSON-RPC over stdio per the Model Context Protocol spec.
|
|
7
7
|
*
|
|
8
|
-
* v0.2.
|
|
8
|
+
* v0.2.1 ships four free tools:
|
|
9
9
|
* - trustlists_search
|
|
10
10
|
* - trustlists_lookup
|
|
11
11
|
* - trustlists_browse
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Spawned by Cursor / Claude Code via `npx -y @trustlists/mcp`.
|
|
6
6
|
* Speaks JSON-RPC over stdio per the Model Context Protocol spec.
|
|
7
7
|
*
|
|
8
|
-
* v0.2.
|
|
8
|
+
* v0.2.1 ships four free tools:
|
|
9
9
|
* - trustlists_search
|
|
10
10
|
* - trustlists_lookup
|
|
11
11
|
* - trustlists_browse
|
|
@@ -23,7 +23,7 @@ import { runLookup, lookupInputSchema, lookupToolDefinition } from './tools/look
|
|
|
23
23
|
import { runBrowse, browseInputSchema, browseToolDefinition } from './tools/browse.js';
|
|
24
24
|
import { runAudit, auditInputSchema, auditToolDefinition, } from './tools/audit-dependencies.js';
|
|
25
25
|
const SERVER_NAME = 'trustlists';
|
|
26
|
-
const SERVER_VERSION = '0.2.
|
|
26
|
+
const SERVER_VERSION = '0.2.1';
|
|
27
27
|
const server = new Server({
|
|
28
28
|
name: SERVER_NAME,
|
|
29
29
|
version: SERVER_VERSION,
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trustlists/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"mcpName": "io.github.trustlists/mcp",
|
|
4
5
|
"description": "trustlists MCP server: find public vendor trust centers, browse listed frameworks, and map project dependencies.",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"mcp",
|