@arcxs-protocol/mcp-server 1.0.0 → 1.0.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 +2 -1
  2. package/server.json +32 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcxs-protocol/mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "ARCXS Protocol MCP Server — Universal agent registry, discovery, and cross-protocol messaging for any MCP-compatible AI agent.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -28,6 +28,7 @@
28
28
  "url": "https://github.com/ARCXS-Protocol/arcxs-mcp-server"
29
29
  },
30
30
  "homepage": "https://arcxs.net",
31
+ "mcpName": "io.github.arcxs-protocol/mcp-server",
31
32
  "dependencies": {
32
33
  "@modelcontextprotocol/sdk": "^1.0.0"
33
34
  }
package/server.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.arcxs-protocol/mcp-server",
4
+ "description": "Universal AI agent registry, cross-protocol discovery, messaging, and payment routing. The DNS/SMTP for AI agents. Register once, be discoverable across MCP, A2A, x402, OpenClaw, AP2, and MPP. Translate messages between protocols. Send cross-protocol messages with store-and-forward delivery. Patent pending.",
5
+ "version": "1.0.0",
6
+ "repository": {
7
+ "url": "https://github.com/ARCXS-Protocol/arcxs-mcp-server",
8
+ "source": "github"
9
+ },
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "@arcxs-protocol/mcp-server",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "name": "ARCXS_API_KEY",
21
+ "description": "API key for authenticated operations (register, message, heartbeat). Get one free at https://arcxs.net/dashboard. Not required for search, lookup, or health checks.",
22
+ "required": false
23
+ },
24
+ {
25
+ "name": "ARCXS_BASE_URL",
26
+ "description": "Base URL for the ARCXS API. Defaults to https://arcxs.net",
27
+ "required": false
28
+ }
29
+ ]
30
+ }
31
+ ]
32
+ }