402verify-mcp 0.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.
- package/LICENSE +21 -0
- package/README.md +18 -0
- package/index.js +23 -0
- package/package.json +34 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 402verify
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# 402verify-mcp
|
|
2
|
+
|
|
3
|
+
**⚠️ Placeholder release. This is a name reservation — the working version is in development.**
|
|
4
|
+
|
|
5
|
+
[402verify](https://402verify.io) runs continuous paid probes against machine-payable (HTTP 402) endpoints and turns the results into machine-readable evidence agents can check before spending. Each probe exercises the full interaction — 402-handshake correctness, price integrity, delivery verification, and quality scoring — so an agent can tell whether a service actually behaves as advertised rather than trusting its listing at face value.
|
|
6
|
+
|
|
7
|
+
Once released, this package will expose a `verify_service(url)` tool over MCP, letting agents pull 402verify's evidence for an endpoint inline.
|
|
8
|
+
|
|
9
|
+
- Website: https://402verify.io
|
|
10
|
+
- GitHub: https://github.com/402verify
|
|
11
|
+
|
|
12
|
+
## Why this exists now
|
|
13
|
+
|
|
14
|
+
This is a deliberate name reservation published while the probe infrastructure is being built. There is no functionality here yet: `v0.0.1` simply prints a notice and exits. When the working MCP server is ready it will ship under this same name.
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
MIT
|
package/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* 402verify-mcp — name-reservation placeholder
|
|
5
|
+
* ============================================
|
|
6
|
+
*
|
|
7
|
+
* This package reserves the npm name `402verify-mcp` for the forthcoming
|
|
8
|
+
* 402verify MCP server. 402verify provides independent evidence that a
|
|
9
|
+
* machine-payable (HTTP 402) endpoint behaves as advertised, so agents can
|
|
10
|
+
* check a service before spending on it.
|
|
11
|
+
*
|
|
12
|
+
* This v0.0.1 release is intentionally a stub: it ships no working MCP
|
|
13
|
+
* server. It exists only to hold the name while the real implementation is
|
|
14
|
+
* built. Running it prints a notice and exits non-zero.
|
|
15
|
+
*
|
|
16
|
+
* Website: https://402verify.io
|
|
17
|
+
* GitHub: https://github.com/402verify
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
console.error(
|
|
21
|
+
"402verify-mcp: placeholder release (v0.0.1). The working MCP server is in development — see https://402verify.io"
|
|
22
|
+
);
|
|
23
|
+
process.exit(1);
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "402verify-mcp",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "MCP server for 402verify — independent evidence that a machine-payable (HTTP 402) endpoint behaves as advertised. Placeholder release; working version in development.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"402verify-mcp": "index.js"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"homepage": "https://402verify.io",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/402verify/402verify-mcp.git"
|
|
15
|
+
},
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"mcp",
|
|
21
|
+
"mcp-server",
|
|
22
|
+
"x402",
|
|
23
|
+
"http-402",
|
|
24
|
+
"402",
|
|
25
|
+
"verification",
|
|
26
|
+
"agent-payments",
|
|
27
|
+
"trust"
|
|
28
|
+
],
|
|
29
|
+
"files": [
|
|
30
|
+
"index.js",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
]
|
|
34
|
+
}
|