io.github.mwbidwell/bionicforms-mcp
NPM · @BIONICFORMS/MCP-SERVER · SCANNED AUG 3
Build forms, manage responses, and run AI analysis via the BionicForms API.
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 Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), 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 (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL returned HTTP 404. 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 136 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability80
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1215 tokens (~60/item across 20 items; 20 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 · @bionicforms/mcp-server
claude mcp add mwbidwell-bionicforms-mcp -- npx -y @bionicforms/mcp-server
codex mcp add mwbidwell-bionicforms-mcp -- npx -y @bionicforms/mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mwbidwell-bionicforms-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@bionicforms/mcp-server"
],
"enabled": true
}
}
} openclaw mcp add mwbidwell-bionicforms-mcp --command npx --arg -y --arg @bionicforms/mcp-server
mcp_servers:
mwbidwell-bionicforms-mcp:
command: "npx"
args: ["-y", "@bionicforms/mcp-server"] {
"mcpServers": {
"mwbidwell-bionicforms-mcp": {
"command": "npx",
"args": [
"-y",
"@bionicforms/mcp-server"
]
}
}
} 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.
- 2 Aug 26 +61
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Licence: MIT functional
- 31 Jul 26 −22
- 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 40
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/@bionicforms/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 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.
create_form ~114
Create a new form. Optionally include fields to set up the schema immediately. Supported field types: text, email, phone, url, number, date, textarea, dropdown, radio, checkbox, rating, nps, slider, file, signature. Returns the form with its ID — call publish_form when ready to accept responses.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | — | Form description |
| fields | array | — | Form fields to create. Each field needs at least a type and label. |
| title | string | yes | Form title |
No output schema declared.
No examples provided.
create_webhook ~84
Create a webhook to receive form submission events. Optionally scope to specific forms. Returns the webhook with its signing secret.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | — | Description of what this webhook is for |
| form_ids | array | — | Limit to specific form IDs. Omit to receive events from all forms. |
| url | string | yes | Webhook endpoint URL (must be HTTPS) |
No output schema declared.
No examples provided.
delete_form ~33
Permanently delete a form and all its responses. This cannot be undone.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
No output schema declared.
No examples provided.
delete_response ~41
Permanently delete a single form response. This cannot be undone.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
| response_id | string | yes | Response ID |
No output schema declared.
No examples provided.
delete_webhook ~31
Delete a webhook. It will stop receiving events immediately.
| Name | Type | Req | Description |
|---|---|---|---|
| webhook_id | string | yes | Webhook ID |
No output schema declared.
No examples provided.
get_account ~23
Get your account details: workspace info, current plan, and credit balance.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
get_analysis ~54
Get the latest AI analysis results for a form, including summary, sentiment, themes, urgency, and quantitative stats. Returns null fields if analysis hasn't been triggered or is still processing.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
No output schema declared.
No examples provided.
get_form ~37
Get full details of a form including its fields, status, response count, and public URL.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
No output schema declared.
No examples provided.
get_response ~43
Get the full details of a single form response, including all field answers.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
| response_id | string | yes | Response ID |
No output schema declared.
No examples provided.
list_approvals ~105
List approval workflow statuses for a form's submissions. Returns each submission's approval status, current step, and review history. Filter by status: pending, approved, or rejected.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
| page | integer | — | Page number (default: 1) |
| per_page | integer | — | Results per page (default: 50, max: 100) |
| status | string | — | Filter by approval status (default: all) |
No output schema declared.
No examples provided.
list_forms ~63
List all forms in your workspace. Returns form titles, statuses, response counts, and public URLs.
| Name | Type | Req | Description |
|---|---|---|---|
| page | integer | — | Page number (default: 1) |
| per_page | integer | — | Results per page (default: 50, max: 100) |
No output schema declared.
No examples provided.
list_responses ~84
List responses (submissions) for a form. Supports pagination and text search across answers.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
| page | integer | — | Page number (default: 1) |
| per_page | integer | — | Results per page (default: 50, max: 100) |
| search | string | — | Search text to filter responses |
No output schema declared.
No examples provided.
list_webhooks ~18
List all webhooks configured in your workspace.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
publish_form ~38
Publish a form so it can accept responses. Returns the public URL where respondents can fill it out.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
No output schema declared.
No examples provided.
query_analysis ~67
Ask a natural language question about a form's responses (e.g. 'What are the top complaints?'). Requires a completed analysis run. Costs 1 AI credit per query.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
| query | string | yes | Natural language question about the responses |
No output schema declared.
No examples provided.
register ~104
Create a new BionicForms account and get an API key. No authentication required. The returned api_key is shown once — save it. Use it as a Bearer token for all other tools. New accounts start unverified (2 req/min, max 3 forms). Verify your email to unlock full limits.
| Name | Type | Req | Description |
|---|---|---|---|
| string | yes | Account email address | |
| name | string | — | Display name (optional) |
| password | string | yes | Password (min 8 characters) |
No output schema declared.
No examples provided.
trigger_analysis ~49
Trigger AI analysis on all responses for a form. Costs 1 AI credit. Returns a run ID — use get_analysis to check results once processing completes.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | Form ID |
No output schema declared.
No examples provided.
update_form ~57
Update a form's title or description. Does not modify the schema — use update_form_schema for that.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | — | New description |
| form_id | string | yes | Form ID |
| title | string | — | New title |
No output schema declared.
No examples provided.
update_form_schema ~87
Replace a form's fields entirely. Provide the complete list of fields — this overwrites the existing schema. Supported field types: text, email, phone, url, number, date, textarea, dropdown, radio, checkbox, rating, nps, slider, file, signature.
| Name | Type | Req | Description |
|---|---|---|---|
| fields | array | yes | Complete list of form fields |
| form_id | string | yes | Form ID |
No output schema declared.
No examples provided.
update_webhook ~83
Update a webhook's URL, description, active status, or form scope.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | — | New description |
| form_ids | array | — | New list of form IDs to scope to |
| is_active | boolean | — | Enable or disable the webhook |
| url | string | — | New endpoint URL |
| webhook_id | string | yes | Webhook ID |
No output schema declared.
No examples provided.