# io.github.IntelagentStudios/mcp-file-processor (npm · @intelagent/mcp-file-processor)

Text extraction, keyword extraction, language detection, and chunking for RAG

- Trust score: 66/100 (medium)
- Change this week: +19
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@intelagent/mcp-file-processor`: 66/100 (this document), [markdown](https://verifymcp.io/servers/intelagentstudios-mcp-file-processor/intelagent-mcp-file-processor.md), [page](https://verifymcp.io/servers/intelagentstudios-mcp-file-processor/intelagent-mcp-file-processor)

## Channel facts

- Registry: `npm`
- Package: `@intelagent/mcp-file-processor`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (122 of 126), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (122 of 126), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL redirects; it must resolve directly.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 140 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 540 tokens (~77/item across 7 items; 6 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add intelagentstudios-mcp-file-processor -- npx -y @intelagent/mcp-file-processor
```

### Codex

```bash
codex mcp add intelagentstudios-mcp-file-processor -- npx -y @intelagent/mcp-file-processor
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "intelagentstudios-mcp-file-processor": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@intelagent/mcp-file-processor"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add intelagentstudios-mcp-file-processor --command npx --arg -y --arg @intelagent/mcp-file-processor
```

### Hermes

```yaml
mcp_servers:
  intelagentstudios-mcp-file-processor:
    command: "npx"
    args: ["-y", "@intelagent/mcp-file-processor"]
```

### Other

```json
{
  "mcpServers": {
    "intelagentstudios-mcp-file-processor": {
      "command": "npx",
      "args": [
        "-y",
        "@intelagent/mcp-file-processor"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 66, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 65, +39)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-08-01 (score 26, +5)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 21, −26)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 47)

First indexed and scored.

## MCP tools (6)

### `extract_text` (~129 tokens)

Extract text content from a file. Supports PDF, DOCX, CSV, JSON, Markdown, HTML, and code files. Pass file content as base64 (for binary formats like PDF/DOCX) or raw text (for text formats). Returns extracted text, word count, and processing time.

Input parameters:

- `content` (string, required): File content — base64-encoded for binary formats (PDF, DOCX), raw text for text formats
- `fileType` (string, required): MIME type (e.g. "application/pdf") or file extension (e.g. ".pdf", "pdf", ".ts")

### `extract_keywords` (~61 tokens)

Extract ranked keywords from text. Returns keywords sorted by frequency, useful for tagging, search indexing, and topic identification.

Input parameters:

- `limit` (number): Maximum number of keywords to return (default: 20)
- `text` (string, required): Text to extract keywords from

### `detect_language` (~72 tokens)

Detect whether content is code, natural language, or mixed. Optionally detects the programming language from file extension. Useful for routing content to appropriate processing pipelines.

Input parameters:

- `fileName` (string): Optional file name for extension-based detection (e.g. "app.ts")
- `text` (string, required): Text content to analyse

### `chunk_text` (~83 tokens)

Split text into overlapping chunks suitable for RAG/embedding pipelines. Configurable chunk size and overlap. Returns chunks with positional metadata.

Input parameters:

- `chunkSize` (number): Target chunk size in characters (default: 1000)
- `overlap` (number): Overlap between chunks in characters (default: 200)
- `text` (string, required): Text to split into chunks

### `process_file` (~149 tokens)

All-in-one file processing: extract text, detect content type, extract keywords, and chunk for RAG. Returns the complete processed result in a single call.

Input parameters:

- `chunkOverlap` (number): Overlap between chunks in characters (default: 200)
- `chunkSize` (number): Target chunk size in characters (default: 1000)
- `content` (string, required): File content — base64-encoded for binary formats (PDF, DOCX), raw text for text formats
- `fileType` (string, required): MIME type or file extension (e.g. "application/pdf", ".md", "csv")
- `keywordLimit` (number): Maximum keywords to extract (default: 20)

### `server_info` (~31 tokens)

Returns server metadata: name, version, registered tools, and registered resources. Useful for introspection and health checks.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/intelagentstudios-mcp-file-processor/intelagent-mcp-file-processor#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 65
- 2026-08-01: 26
- 2026-07-31: 21
- 2026-07-30: 47
- 2026-07-28: 47
- 2026-07-27: 47

## Links

- npm package: https://www.npmjs.com/package/@intelagent/mcp-file-processor
- Socket report: https://socket.dev/npm/package/@intelagent/mcp-file-processor
- Changelog RSS feed: https://verifymcp.io/servers/intelagentstudios-mcp-file-processor/intelagent-mcp-file-processor/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/intelagentstudios-mcp-file-processor/intelagent-mcp-file-processor/changelog.json
- HTML version of this page: https://verifymcp.io/servers/intelagentstudios-mcp-file-processor/intelagent-mcp-file-processor
