io.github.intenttext/intenttext-mcp
NPM · @INTENTTEXT/MCP-SERVER · SCANNED AUG 3
Parse, validate, query, and render IntentText (.it) documents for AI agents
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 (106 of 110), 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 (106 of 110), 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 143 days ago).Pass
- Security-disclosure policy not yet verified: we couldn't inspect the source repository.Unverified
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 724 tokens (~80/item across 9 items; 9 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
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
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 · @intenttext/mcp-server
claude mcp add intenttext-intenttext-mcp -- npx -y @intenttext/mcp-server
codex mcp add intenttext-intenttext-mcp -- npx -y @intenttext/mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"intenttext-intenttext-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@intenttext/mcp-server"
],
"enabled": true
}
}
} openclaw mcp add intenttext-intenttext-mcp --command npx --arg -y --arg @intenttext/mcp-server
mcp_servers:
intenttext-intenttext-mcp:
command: "npx"
args: ["-y", "@intenttext/mcp-server"] {
"mcpServers": {
"intenttext-intenttext-mcp": {
"command": "npx",
"args": [
"-y",
"@intenttext/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.
- 3 Aug 26 +4
- Stability: unverified → 0.27 ▲ functional
- 2 Aug 26 +60
- 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
- Schema quality: unverified → excellent ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 −2
- Dependency health: partial → unverified ▼ functional
- 31 Jul 26 −20
- 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 +4
- Malware scan: pass → unverified ▼ security
- Tool coverage: unverified → 100 ▲ functional
- First check of Tool coverage: 100 functional
- First check of Schema quality: fail functional
- First check of Schema quality: pass functional
- First check of Schema quality: unverified functional
- 27 Jul 26 18
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/@intenttext/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 106 packages
106 packages in the resolved dependency tree · 106 deprecated · 30 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.
diff_documents ~76
Compare two versions of an IntentText document and return a semantic diff. Shows which blocks were added, removed, or modified between versions. More meaningful than a line diff — tells you what changed in the document's structure.
| Name | Type | Req | Description |
|---|---|---|---|
| after | string | yes | The updated IntentText source |
| before | string | yes | The original IntentText source |
No output schema declared.
No examples provided.
document_to_source ~73
Convert an IntentText JSON document back to .it source format. Use this when you have a document stored as JSON (e.g. from a database) and need to display or edit it as .it text.
| Name | Type | Req | Description |
|---|---|---|---|
| document | object | yes | An IntentText document JSON object (as produced by parse_intent_text) |
No output schema declared.
No examples provided.
extract_workflow ~71
Extract the execution graph from an IntentText workflow document. Returns steps in topological order, dependency relationships, parallel batches, and gate positions. Use this to understand how to execute a workflow before running it.
| Name | Type | Req | Description |
|---|---|---|---|
| source | string | yes | IntentText source containing workflow blocks (step:, decision:, gate:, etc.) |
No output schema declared.
No examples provided.
merge_template ~99
Merge an IntentText template (containing {{variable}} placeholders) with a data object. Returns the merged .it source with all variables resolved. Use this to generate documents from templates.
| Name | Type | Req | Description |
|---|---|---|---|
| data | object | yes | JSON object with values to substitute into the template |
| render | string | — | Optionally render the merged result. Default: none (returns .it source) |
| template | string | yes | IntentText template source with {{variable}} placeholders |
No output schema declared.
No examples provided.
parse_intent_text ~90
Parse an IntentText (.it) source string into a structured JSON document. Returns the complete document with metadata and typed blocks array. Use this when you have raw .it text and need to inspect or process its structure.
| Name | Type | Req | Description |
|---|---|---|---|
| safe | boolean | — | If true, never throw — returns warnings instead of errors. Default: true |
| source | string | yes | The IntentText source string to parse |
No output schema declared.
No examples provided.
query_document ~149
Query an IntentText document for specific blocks by type, content, or properties. Returns matching blocks as JSON. Use this to extract tasks, steps, decisions, or any other block type from a document.
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | — | Substring to search for in block content (case-insensitive) |
| limit | number | — | Maximum number of results to return |
| section | string | — | Only return blocks within this section (substring match on section title) |
| source | string | yes | IntentText source string |
| type | string | — | Block type to filter by (e.g. 'task', 'step', 'gate'). Comma-separated for multiple types: 'step,gate,decision' |
No output schema declared.
No examples provided.
render_html ~44
Render an IntentText source string to styled HTML. Returns a complete HTML string ready to display in a browser.
| Name | Type | Req | Description |
|---|---|---|---|
| source | string | yes | IntentText source string (.it format) |
No output schema declared.
No examples provided.
render_print ~50
Render an IntentText document to print-optimised HTML with @media print CSS. Applies font: and page: block settings. Suitable for PDF generation.
| Name | Type | Req | Description |
|---|---|---|---|
| source | string | yes | IntentText source string |
No output schema declared.
No examples provided.
validate_document ~72
Validate an IntentText document for semantic correctness beyond syntax. Checks for broken step references, missing required properties, unresolved variables, and workflow logic errors. Returns a list of errors and warnings. Always call this after generating a workflow document to catch issues before execution.
| Name | Type | Req | Description |
|---|---|---|---|
| source | string | yes | IntentText source string to validate |
No output schema declared.
No examples provided.