@elytrasec/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/README.md +1 -1
- package/package.json +15 -5
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ This MCP server is a thin, read-only client over Elytra's public HTTP API. Speci
|
|
|
57
57
|
|
|
58
58
|
## Optional env vars
|
|
59
59
|
|
|
60
|
-
- `ELYTRA_API_KEY` — Bearer key for the paid `/api/v1/scan` endpoint (bypasses x402 micropayment for higher throughput).
|
|
60
|
+
- `ELYTRA_API_KEY` — Bearer key for the paid `/api/v1/scan` endpoint (bypasses x402 micropayment for higher throughput).
|
|
61
61
|
- `ELYTRA_BASE_URL` — Override the default `https://elytrasec.io` (for self-hosting).
|
|
62
62
|
|
|
63
63
|
## Pricing
|
package/package.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elytrasec/mcp",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Elytra Security as a Model Context Protocol server
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Elytra Security as a Model Context Protocol server \u2014 give your AI agent the ability to scan smart contracts and code, check 12 famous-hack patterns, and return public Elytra security receipts.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"author": "ElytraSec
|
|
6
|
+
"author": "ElytraSec",
|
|
7
7
|
"homepage": "https://elytrasec.io/agents",
|
|
8
8
|
"bugs": "https://github.com/ElytraSec/mcp/issues",
|
|
9
|
-
"keywords": [
|
|
9
|
+
"keywords": [
|
|
10
|
+
"mcp",
|
|
11
|
+
"model-context-protocol",
|
|
12
|
+
"security",
|
|
13
|
+
"scanner",
|
|
14
|
+
"solidity",
|
|
15
|
+
"defi",
|
|
16
|
+
"ai-agent",
|
|
17
|
+
"claude",
|
|
18
|
+
"cursor"
|
|
19
|
+
],
|
|
10
20
|
"engines": {
|
|
11
21
|
"node": ">=20"
|
|
12
22
|
},
|
|
@@ -28,7 +38,7 @@
|
|
|
28
38
|
],
|
|
29
39
|
"scripts": {
|
|
30
40
|
"build": "tsup",
|
|
31
|
-
"dev":
|
|
41
|
+
"dev": "tsup src/index.ts --format esm --watch",
|
|
32
42
|
"start": "node dist/index.js"
|
|
33
43
|
},
|
|
34
44
|
"dependencies": {
|