io.github.vpatser1/mcp-api-doc-generator
NPM · MCP-API-DOC-GENERATOR · SCANNED AUG 8
Generate OpenAPI 3.1 specs, endpoint docs, TypeScript SDKs, and test suites from code
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 Security98
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- No install/post-install scripts declared.Pass
- 36 of 123 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: no source repository is declared. See how to fix → View diagnostics → Fail
- 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 3 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability71
- AI-judged instruction clarity (good).Pass
- Tool/resource definitions use about 538 tokens (~107/item across 5 items; 5 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
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 · mcp-api-doc-generator
claude mcp add vpatser1-mcp-api-doc-generator -- npx -y mcp-api-doc-generator
codex mcp add vpatser1-mcp-api-doc-generator -- npx -y mcp-api-doc-generator
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"vpatser1-mcp-api-doc-generator": {
"type": "local",
"command": [
"npx",
"-y",
"mcp-api-doc-generator"
],
"enabled": true
}
}
} openclaw mcp add vpatser1-mcp-api-doc-generator --command npx --arg -y --arg mcp-api-doc-generator
mcp_servers:
vpatser1-mcp-api-doc-generator:
command: "npx"
args: ["-y", "mcp-api-doc-generator"] {
"mcpServers": {
"vpatser1-mcp-api-doc-generator": {
"command": "npx",
"args": [
"-y",
"mcp-api-doc-generator"
]
}
}
} 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.
- 8 Aug 26 +3
- Known CVEs: partial → pass ▲ security
- Dependency health: partial → 0.85 functional
- 4 Aug 26 59
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 8 Aug 2026 · Analysed npm/[email protected]
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | npm |
Dependencies 123 packages
| Packages resolved | 123 |
|---|---|
| Stale | 36 |
| Tree resolution | Complete |
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.
document_endpoint ~167
Generates full documentation for a single API endpoint in Markdown. Includes parameter tables, request/response examples with realistic data, error response documentation (400, 401, 403, 404, 500), cURL command example, JavaScript fetch example, and Python requests example.
| Name | Type | Req | Description |
|---|---|---|---|
| auth_type | string | – | Authentication type required |
| description | string | yes | What this endpoint does |
| method | string | yes | HTTP method (GET, POST, PUT, PATCH, DELETE) |
| parameters | array | – | Path, query, or header parameters |
| path | string | yes | URL path (e.g. /users/{id}) |
| request_body | object | – | Request body schema |
| response | object | – | Success response schema |
| tags | array | – | Tags for grouping |
No output schema declared.
No examples provided.
generate_openapi ~105
Generates a complete OpenAPI 3.1 specification from endpoint definitions. Produces properly structured output with paths, parameters, request/response schemas using $ref components, authentication sections, server URLs, tags, and grouping. Supports YAML and JSON output.
| Name | Type | Req | Description |
|---|---|---|---|
| endpoints | array | yes | Array of endpoint definitions to include in the spec |
| format | string | – | Output format (default: yaml) |
| info | object | – | OpenAPI info block (title, version, description) |
No output schema declared.
No examples provided.
generate_sdk ~92
Generates a TypeScript SDK client from endpoint definitions. Produces typed interfaces for all request/response models, a client class with methods for each endpoint, error handling helpers (ApiError class with retry support), and authentication wrappers (Bearer, API Key, Basic).
| Name | Type | Req | Description |
|---|---|---|---|
| base_url | string | – | Base URL for API calls (default: https://api.example.com) |
| endpoints | array | yes | Array of endpoint definitions |
No output schema declared.
No examples provided.
generate_tests ~97
Generates comprehensive API test suites for endpoints. Creates happy path tests, validation tests (missing required fields), edge case tests (empty values, null values, extra fields), authentication tests, HTTP method tests, and response structure checks. Includes mock data generator functions. Outputs as Jest or Vitest test files.
| Name | Type | Req | Description |
|---|---|---|---|
| endpoints | array | yes | Array of endpoint definitions to test |
| framework | string | – | Test framework to use (default: vitest) |
No output schema declared.
No examples provided.
validate_api ~77
Validates an OpenAPI specification (YAML or JSON). Checks schema correctness, missing descriptions, inconsistent naming conventions, missing error responses, security scheme completeness, and server URLs. Returns categorized issues (errors, warnings, suggestions) with specific fix suggestions for each.
| Name | Type | Req | Description |
|---|---|---|---|
| spec | string | yes | OpenAPI spec content (YAML or JSON string) |
No output schema declared.
No examples provided.