@neus/mcp-server 1.0.1 → 1.0.3

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/README.md CHANGED
@@ -6,15 +6,15 @@ Model Context Protocol server for NEUS trust receipts, verification, and agent f
6
6
 
7
7
  For almost all integrations, connect to **`https://mcp.neus.network/mcp`** and follow **[MCP setup](https://docs.neus.network/mcp/setup)** (transport, auth, and access keys).
8
8
 
9
- This npm package ships **public discovery metadata** (for example `server.json`) for registries and installers. It does **not** include a runnable MCP server binary or runtime dependencies. To run the wire server yourself, clone the **protocol** repository and use its **`npm run mcp`** script or the **Docker** image described there. Always read the public MCP docs linked above.
9
+ This npm package ships **public discovery metadata** (for example `server.json`) for registries and installers. The hosted MCP server runs at **`https://mcp.neus.network/mcp`** see the [MCP docs](https://docs.neus.network/mcp/overview) for setup and usage.
10
10
 
11
- ## Golden path (nine tools)
11
+ ## Recommended flow
12
12
 
13
13
  Models should **call neus_context first** every session, then follow the tool order your client needs:
14
14
 
15
15
  | Tool | Role |
16
16
  | --- | --- |
17
- | `neus_context` | Session home setup, verifier summaries, golden path |
17
+ | `neus_context` | Session home, setup, verifier summaries, and recommended flow |
18
18
  | `neus_verifiers_catalog` | Verifier metadata and JSON schemas |
19
19
  | `neus_proofs_check` | Eligibility only (does not create proofs) |
20
20
  | `neus_verify` | Start or continue verification when prerequisites already match |
@@ -30,10 +30,6 @@ With a Profile access key on the MCP session, call **`neus_me`** and expect a su
30
30
 
31
31
  Use **`Authorization: Bearer`** with the **personal access key** from the NEUS app (Profile → Account). Do not embed secrets in public repos or client-side bundles. Inputs are validated at runtime.
32
32
 
33
- ## Optional observability (self-hosted process only)
34
-
35
- When you run the MCP server from a **protocol** checkout or container image, if **`APPLICATIONINSIGHTS_CONNECTION_STRING`** is set and **`APPLICATIONINSIGHTS_ENABLED=true`**, that process can export OpenTelemetry-compatible telemetry. If those variables are unset, telemetry stays off. This does not apply to importing this npm package alone.
36
-
37
33
  ## Docs and support
38
34
 
39
35
  - **Product MCP guides:** [docs.neus.network/mcp](https://docs.neus.network/mcp/overview)
package/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @neus/mcp-server — discovery metadata only.
3
- * The NEUS MCP wire server runs on NEUS-hosted infrastructure, not inside this npm package.
3
+ * The hosted NEUS MCP server runs at https://mcp.neus.network/mcp, not inside this npm package.
4
4
  *
5
5
  * @see https://mcp.neus.network/mcp
6
6
  * @see https://docs.neus.network/mcp/setup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neus/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Public discovery metadata for the hosted NEUS MCP (streamable HTTP). Runtime is not shipped in this package.",
5
5
  "type": "module",
6
6
  "main": "./index.mjs",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
18
- "url": "git+https://github.com/neus/protocol.git",
19
- "directory": "mcp/npm-dist"
18
+ "url": "git+https://github.com/neus/network.git",
19
+ "directory": "mcp"
20
20
  },
21
21
  "keywords": [
22
22
  "neus",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.neus/neus-mcp",
4
4
  "title": "NEUS MCP",
5
5
  "description": "NEUS hosted MCP: verifiers, proofs, verify flows, agents. Always call neus_context first.",
6
- "version": "1.0.1",
6
+ "version": "1.0.3",
7
7
  "repository": {
8
8
  "url": "https://github.com/neus/network",
9
9
  "source": "github"
@@ -54,7 +54,7 @@
54
54
  },
55
55
  {
56
56
  "name": "neus_proofs_get",
57
- "description": "Reads proof records, tags, delegated agent reads, Profile summary fields, and live proof state. qHashes in the response are authoritative."
57
+ "description": "Reads proof records, tags, delegated agent reads, Profile summary fields, and live proof state. Use returned qHashes as receipt references."
58
58
  },
59
59
  {
60
60
  "name": "neus_me",
@@ -97,7 +97,7 @@
97
97
  {
98
98
  "title": "Bootstrap a session",
99
99
  "description": "Load the MCP session home plus verifier summaries.",
100
- "prompt": "Call neus_context first, then follow the returned goldenPath. If Bearer is configured, call neus_me before any account-aware work."
100
+ "prompt": "Call neus_context first, then follow the returned recommendedFlow. If Bearer is configured, call neus_me before any account-aware work."
101
101
  },
102
102
  {
103
103
  "title": "Register an AI agent",