io.github.thuupx/lunge
NPM · LUNGE-MCP · SCANNED AUG 3
Agent-native API client: execute/test REST/GraphQL/WS/SSE with assertions, extraction, collections
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security88
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (104 of 108), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (104 of 108), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 10 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability71
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 2743 tokens (~124/item across 22 items; 22 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage90
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 69% of tool parameters carry a description.Partial
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · lunge-mcp
claude mcp add thuupx-lunge -- npx -y lunge-mcp
codex mcp add thuupx-lunge -- npx -y lunge-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"thuupx-lunge": {
"type": "local",
"command": [
"npx",
"-y",
"lunge-mcp"
],
"enabled": true
}
}
} openclaw mcp add thuupx-lunge --command npx --arg -y --arg lunge-mcp
mcp_servers:
thuupx-lunge:
command: "npx"
args: ["-y", "lunge-mcp"] {
"mcpServers": {
"thuupx-lunge": {
"command": "npx",
"args": [
"-y",
"lunge-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +3
- Stability: unverified → 0.23 ▲ functional
- 2 Aug 26 +40
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- Schema quality: unverified → good ▲ functional
- Licence: MIT functional
- 1 Aug 26 +5
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- MCP protocol: unverified → pass ▲ functional
- 31 Jul 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 44
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 104 packages
104 packages in the resolved dependency tree · 96 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
collection_format Collection format reference ~84
Return the Lunge collection format reference: top-level fields, step schema, request specs per protocol (http/graphql/ws/sse), full assertion vocabulary (status/header/jsonpath/timeMs/schema/not + matchers), WS/SSE-specific assertions, variable chaining (extract + {{var}}), and JSONPath syntax. Call this BEFORE writing explicit steps for save_collection or reviewing saved output.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
graphql_introspect GraphQL introspection ~73
Introspect GraphQL endpoint, return summarized schema with field signatures (args + return types) and input types.
| Name | Type | Req | Description |
|---|---|---|---|
| auth | object | — | — |
| env | string | — | — |
| headers | object | — | — |
| timeoutMs | integer | — | — |
| url | string | yes | GraphQL endpoint URL. |
No output schema declared.
No examples provided.
graphql_request GraphQL request ~213
GraphQL query/mutation over HTTP. Supports {{var}} extraction. Note: `ok` reflects HTTP status only (200 = ok). GraphQL-level errors are returned in `graphqlErrors` — always check both. Use extract with $.data.* for success data and $.errors.* for error details.
| Name | Type | Req | Description |
|---|---|---|---|
| assert | array | — | e.g. [{status:200},{jsonpath:'$.x',equals:1},{timeMs:{lt:500}}]. |
| auth | object | — | — |
| env | string | — | — |
| extract | object | — | Capture vars: { token: '$.data.login.accessToken' }. |
| headers | object | — | — |
| query | string | yes | GraphQL query/mutation document. |
| timeoutMs | integer | — | — |
| url | string | yes | GraphQL endpoint URL. |
| variables | object | — | — |
| verbosity | string | — | summary (default, token-efficient), headers, or full. Auto-downgraded to summary when extract is set. |
No output schema declared.
No examples provided.
http_request HTTP request ~214
REST/HTTP request with auth, assertions, {{var}} extraction. Returns token-efficient summary.
| Name | Type | Req | Description |
|---|---|---|---|
| assert | array | — | e.g. [{status:200},{jsonpath:'$.x',equals:1},{timeMs:{lt:500}}]. |
| auth | object | — | — |
| body | — | — | Request body (object=json, string=text). |
| bodyType | string | — | Default json. |
| env | string | — | Environment name for variable resolution. |
| extract | object | — | Capture vars: { token: '$.token' }. Use via {{token}} later. |
| followRedirects | boolean | — | — |
| headers | object | — | — |
| method | string | — | HTTP method (default GET). |
| query | object | — | — |
| timeoutMs | integer | — | — |
| url | string | yes | Full URL. May contain {{variables}}. |
| verbosity | string | — | summary (default, token-efficient), headers, or full. Auto-downgraded to summary when extract is set. |
No output schema declared.
No examples provided.
import_curl Import a curl command ~76
Parse curl into structured request. Optionally execute it.
| Name | Type | Req | Description |
|---|---|---|---|
| curl | string | yes | The full curl command, e.g. "curl -X POST https://... -H '...' -d '...'". |
| execute | boolean | — | If true, run the parsed request and return the result. |
| verbosity | string | — | — |
No output schema declared.
No examples provided.
import_har Import HAR to collection ~166
Parse HAR file → Lunge collection. Splits query/headers/body. Optional 2xx filter. Params: path (required, .json HAR file), out (optional, write to .json/.yaml/.yml), only2xx (optional, only keep 2xx responses), maxSteps (optional, cap step count, default 200). Returns {ok, imported, name, steps, writtenTo}.
| Name | Type | Req | Description |
|---|---|---|---|
| maxSteps | integer | — | Cap the number of generated steps (default 200). |
| only2xx | boolean | — | Only include requests that returned a 2xx response. |
| out | string | — | Write the resulting collection to this path (.yaml/.yml/.json). |
| path | string | yes | Path to the HAR file (.json). |
No output schema declared.
No examples provided.
import_openapi Import OpenAPI to collection ~165
Parse OpenAPI/Swagger (JSON/YAML) → Lunge collection. One step per operation with 2xx assertion. Params: path (required, file path), out (optional, write collection to .json/.yaml/.yml), includeTags (optional, only ops with these tags), maxSteps (optional, cap step count, default 200). Returns {ok, imported, name, steps, writtenTo}.
| Name | Type | Req | Description |
|---|---|---|---|
| includeTags | array | — | Only import operations with any of these tags. |
| maxSteps | integer | — | Cap the number of generated steps (default 200). |
| out | string | — | Write the resulting collection to this path (.yaml/.yml/.json). |
| path | string | yes | Path to the OpenAPI/Swagger file. |
No output schema declared.
No examples provided.
inspect_response Inspect a stored response ~220
Drill into a stored response by handle without re-running the request. Use jsonpath to pull only the slice you need. Supports RFC 9535 filters ($.items[[email protected]==1]) and slices ($.items[0:5]). Use double quotes in filters. Omit jsonpath to return the full stored body — for graphql_introspect this is the enriched `schema` (so $.queries, $.mutations, $.inputTypes work directly); for ws_session it's the `frames` array; for sse_session it's the `events` array; otherwise it's the parsed bodyJson/bodyText.
| Name | Type | Req | Description |
|---|---|---|---|
| handle | string | yes | responseHandle from a prior tool call. |
| jsonpath | string | — | RFC 9535 JSONPath. Filters need double quotes: [[email protected]=="x"]. Omit for full body. |
| maxItems | integer | — | Cap array elements returned (default 50). Excess shown as truncation marker. |
| maxStr | integer | — | Cap string length in chars (default 2000). |
No output schema declared.
No examples provided.
list_collections List collections ~41
Find collection files (.yaml/.yml/.json) under a directory.
| Name | Type | Req | Description |
|---|---|---|---|
| dir | string | — | Directory to scan. Defaults to the current working directory. |
No output schema declared.
No examples provided.
list_envs List environments ~36
List env names and (masked) variables of the active or specified one.
| Name | Type | Req | Description |
|---|---|---|---|
| name | string | — | Show variables for this env. |
No output schema declared.
No examples provided.
list_history List request history ~98
List all requests recorded in this session with full specs (method, url, query, headers, body, auth, assert, extract) and extracted values. Use this to review what happened before saving a multi-step collection. Each entry has an id (req_1, req_2, ...) for use with save_collection. Returns {count, entries:[{id, type, request, assert, extract, extractedValues, responseHandle}]}.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
run_collection Run a collection ~95
Run declarative collection file. Threads extracted vars between steps. Optional JUnit XML export.
| Name | Type | Req | Description |
|---|---|---|---|
| env | string | — | Environment to resolve variables from. |
| junitPath | string | — | Write a JUnit XML report to this path. |
| only | array | — | Only run steps with these ids. |
| path | string | yes | Path to the collection file. |
| tags | array | — | Only run steps having any of these tags. |
No output schema declared.
No examples provided.
save_collection Save multi-step collection ~269
Save multiple requests as a multi-step collection file. Params: path (required, .json/.yaml/.yml), fromHistory (optional, array of history ids from list_history — saves in specified order; omit to save ALL history), steps (optional, explicit step specs — overrides fromHistory; call collection_format first for the schema), name (optional, collection name), description (optional), vars (optional), defaults (optional). Steps preserve extraction chaining ({{var}} from earlier steps' extract). Returns {saved, path, stepCount, stepIds}.
| Name | Type | Req | Description |
|---|---|---|---|
| defaults | object | — | Default settings applied to every step (e.g. {timeoutMs: 10000, headers: {Accept: 'application/json'}}). |
| description | string | — | Collection description. |
| fromHistory | array | — | History entry ids to save (e.g. ['req_1','req_3']). Omit to save ALL history. |
| name | string | — | Collection name. |
| path | string | yes | Collection file path (.json/.yaml/.yml). |
| steps | array | — | Explicit step specs. Overrides fromHistory if provided. |
| vars | object | — | Collection-level variables (e.g. {baseUrl: 'https://...', apiKey: '{{env.API_KEY}}'}). |
No output schema declared.
No examples provided.
save_request Save request to collection ~215
Persist last ad-hoc request (or explicit spec) as a new step in a collection file. Params: path (required, .json/.yaml/.yml), id (optional, step id), type (optional, http|graphql|ws|sse), request (optional, explicit spec; defaults to last call's request), assert, extract, tags, name (optional, set collection name). Returns {saved, path, stepId, stepCount} or isError if no prior request and no explicit request.
| Name | Type | Req | Description |
|---|---|---|---|
| assert | array | — | — |
| extract | object | — | — |
| id | string | — | Step id. Defaults to a generated one. |
| name | string | — | Set/replace the collection name. |
| path | string | yes | Collection file path (.yaml/.yml/.json). |
| request | object | — | Explicit request spec. Defaults to the last call's request. |
| tags | array | — | — |
| type | string | — | Step type; defaults to the last request's type. |
No output schema declared.
No examples provided.
set_env Set environment variables ~65
Create/update named env. Values may be {value, secret:true}. Use via {{name}}.
| Name | Type | Req | Description |
|---|---|---|---|
| name | string | yes | Environment name, e.g. 'dev'. |
| vars | object | yes | Map of variables. Use { value, secret: true } to mark secrets. |
No output schema declared.
No examples provided.
set_policy Set request policy ~110
Configure host allow/deny lists + dry-run mode. Glob patterns: *, *.example.com. Pass an empty array to allow/deny to clear that list. Returns {policy:{allow,deny,dryRun}}.
| Name | Type | Req | Description |
|---|---|---|---|
| allow | array | — | Allowed host patterns. Empty = allow any non-denied host. |
| deny | array | — | Denied host patterns; takes precedence over allow. Pass [] to clear. |
| dryRun | boolean | — | If true, validate requests but do not send them. |
No output schema declared.
No examples provided.
sse_session SSE session (bounded) ~164
Subscribe to SSE, collect events until stop condition. Returns summarized batch with assertions. Event shape: {event:string, data:string, id:string|null, json:object|null}. Assertions: anyEvent {jsonpath,equals} matches any event; eventCount {gte/lte/eq}. Example: assert=[{anyEvent:{jsonpath:'$.event',equals:'notification'}},{eventCount:{gte:1}}].
| Name | Type | Req | Description |
|---|---|---|---|
| assert | array | — | e.g. [{anyEvent:{jsonpath:'$.type',equals:'tick'}},{eventCount:{gte:1}}] |
| collect | object | — | — |
| env | string | — | — |
| headers | object | — | — |
| url | string | yes | SSE endpoint URL. |
| verbosity | string | — | — |
No output schema declared.
No examples provided.
ws_close Close persistent WebSocket ~31
Close a persistent WebSocket connection and release its handle.
| Name | Type | Req | Description |
|---|---|---|---|
| handle | string | yes | Handle returned by ws_open. |
No output schema declared.
No examples provided.
ws_open Open persistent WebSocket ~82
Open long-lived WS, return handle. Use ws_send/ws_recv/ws_close to interact.
| Name | Type | Req | Description |
|---|---|---|---|
| env | string | — | — |
| headers | object | — | — |
| send | array | — | Messages to send immediately after connecting. |
| subprotocols | array | — | — |
| url | string | yes | ws:// or wss:// URL. May contain {{variables}}. |
No output schema declared.
No examples provided.
ws_recv Receive WebSocket frames ~74
Drain buffered frames from persistent WS. Blocks up to maxDurationMs for first frame.
| Name | Type | Req | Description |
|---|---|---|---|
| handle | string | yes | Handle returned by ws_open. |
| maxDurationMs | integer | — | Max wait for the first frame (default 1000ms). |
| maxMessages | integer | — | Max frames to drain (default 50). |
No output schema declared.
No examples provided.
ws_send Send WebSocket message ~64
Send a single message on a persistent WebSocket connection opened with ws_open.
| Name | Type | Req | Description |
|---|---|---|---|
| handle | string | yes | Handle returned by ws_open. |
| json | — | — | Send as a JSON message (mutually exclusive with text). |
| text | string | — | Send as a raw text message. |
No output schema declared.
No examples provided.
ws_session WebSocket session (bounded) ~188
Connect WS, send messages, collect frames until stop condition. Returns summarized batch. Frame shape: {type:'text'|'binary', text:string, json:object|null}. Assertions: anyFrame {jsonpath,equals} matches any frame; frameCount {gte/lte/eq}. Example: assert=[{anyFrame:{jsonpath:'$.type',equals:'text'}},{frameCount:{gte:1}}].
| Name | Type | Req | Description |
|---|---|---|---|
| assert | array | — | e.g. [{anyFrame:{jsonpath:'$.type',equals:'ack'}},{frameCount:{gte:1}}] |
| collect | object | — | — |
| env | string | — | — |
| headers | object | — | — |
| send | array | — | Messages to send after connecting. |
| subprotocols | array | — | — |
| url | string | yes | ws:// or wss:// URL. |
| verbosity | string | — | — |
No output schema declared.
No examples provided.