@arcxs-protocol/mcp-server 1.0.0 → 1.0.2
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/.mcpregistry_github_token +1 -0
- package/.mcpregistry_registry_token +1 -0
- package/package.json +2 -1
- package/server.json +32 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ghu_jGBODMF01jwnyVoFiVoD2Y7lFmHPDw2PnKQv
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NzYwMjg3MTksIm5iZiI6MTc3NjAyODQxOSwiaWF0IjoxNzc2MDI4NDE5LCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6IkdpdElkb2wiLCJwZXJtaXNzaW9ucyI6W3siYWN0aW9uIjoicHVibGlzaCIsInJlc291cmNlIjoiaW8uZ2l0aHViLkdpdElkb2wvKiJ9LHsiYWN0aW9uIjoicHVibGlzaCIsInJlc291cmNlIjoiaW8uZ2l0aHViLkFSQ1hTLVByb3RvY29sLyoifV19.79L-IEr-lWgRYrPrrF2__9AXhb6z5uL8V9wnJB-AiFvOQGQ8j-rZ5C_ccHMIQRhpohXj9X5UfGEPCkS4g14GDA","expires_at":1776028719}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcxs-protocol/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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.",
|
|
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
|
+
}
|