doc-redactor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@doc-redactorRedact all names, phones and emails in the contract.docx and audit it"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
doc-redactor
本地优先的多格式文档脱敏工具:检测 → 真删除 → 取证审计,全程零网络调用。 支持 PDF(文字型 + 扫描件)、DOCX、XLSX、PPTX、TXT/MD/CSV/JSON 等。 可作为 MCP server 接入 AgenticX 等任意支持 MCP 的 Agent 框架,或作为 Python 库直接使用。
格式路由采纳 AgenticX KB 的扩展名分类; 检测层格式无关(一份检测代码服务全部格式),执行层逐格式真删除。
能力矩阵
泄露面 | PDF 文字型 | PDF 扫描件 | DOCX | XLSX | PPTX | TXT/MD |
正文本体 | 内容流物理移除 | OCR 定位 + 图像像素真删除 | 段落/表格 run 级替换(跨 run 重建) | 全 sheet 单元格(含隐藏 sheet) | shape/表格/组合形状递归 | 直接替换 |
Logo / 嵌入图 | SIFT 模板匹配(宽高比 + NCC 双校验) | 同左 | — | — | — | — |
扫描页 | 自动识别(文本量阈值)→ RapidOCR | ✓ | — | — | — | — |
元数据 | docinfo + XMP 全清 | 同左 | core.xml 属性 | 属性 + 透视缓存天然清除 | core.xml 属性 | 无 |
修订记录 | — | — | w:del/w:ins 全接受 | — | — | — |
批注 | 注释/表单 | — | comments.xml 替换 | 单元格批注 | — | — |
页眉页脚/备注 | — | — | 页眉页脚(含首页/偶数页) | — | 备注页 | — |
取证审计 | 对象流/隐藏文本/增量保存/logo 回扫 | OCR 回扫 | 解压逐部件搜词 + 修订残留检查 | 同左 + 隐藏 sheet | 同左 | 重读全文 |
检测层(全格式共享):关键词词典 + 正则(手机/身份证/邮箱/银行卡)+ spaCy 中文 NER(可选)。 OCR 文本经 NFKC 归一化后再检测(OCR 常把数字识别成全角),命中区域按字符占比切分,宁大勿漏。
Related MCP server: PDF Redaction MCP Server
MCP 工具(两阶段安全设计)
redact_scan— 非破坏性扫描(自动识别格式),返回候选清单 + 元数据泄露 + 格式相关清单redact_apply— 只执行确认过的词条清单(不吃自动判断)redact_audit— 取证审计,交付前必须 PASSextract_image— 提取 PDF 嵌入图像作为 logo 脱敏模板glossary_list / add / remove— 敏感词词典闭环(~/.doc-redactor/glossary.json)
安全原则:Agent 永远不能静默决定"什么算敏感"——scan 出候选、用户确认、apply 只吃确认清单、audit 兜底。
安装
git clone https://github.com/agxhub/doc-redactor && cd doc-redactor
uv venv .venv --python 3.11
uv pip install --python .venv/bin/python -e ".[ner]"
.venv/bin/python -m spacy download zh_core_web_trf # 可选:NER 检测注册到 AgenticX
在 ~/.agenticx/mcp.json 添加:
{
"mcpServers": {
"doc-redactor": {
"command": "/path/to/doc-redactor/.venv/bin/python",
"args": ["mcp_server.py"],
"cwd": "/path/to/doc-redactor",
"timeout": 300.0
}
}
}Python 库直接使用
from docredactor import scan_document, apply_redaction, audit_document
scan = scan_document("合同.docx", keywords=["张伟"], enable_ner=True)
# 用户确认候选后
apply_redaction("合同.docx", "合同_脱敏.docx", terms=["张伟", "13800138000"])
report = audit_document("合同_脱敏.docx", terms=["张伟", "13800138000"])
assert report["verdict"] == "PASS"Roadmap
旧版二进制 Office(.doc/.ppt/.xls):需 LibreOffice 预转换,评估中
图像文件(PNG/JPG)直接脱敏:OCR + 像素涂黑管线已具备,待封装
.docx 内嵌对象(OLE)与图表 XML 泄露面深化
License
AGPL-3.0-or-later(PyMuPDF 执行层传染)。检测层与审计思路可参考实现。
Available Tools
7 toolsextract_imageA
从 PDF 提取指定嵌入图像保存为 PNG(用于制作 logo 脱敏模板:先 redact_scan 拿到图像 xref 清单,再提取可疑 logo 作为模板)。
| Name | Required | Description | Default |
|---|---|---|---|
| xref | Yes | ||
| pdf_path | Yes | ||
| output_path | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden. It discloses the output format (PNG) and the xref-based selection mechanism, but does not mention overwrite behavior, error cases, or file-access assumptions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense sentence that front-loads the core action and then adds only the necessary workflow context. Every part earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 3-parameter extraction tool, the description covers the workflow, source format, selection key, and output format. Minor gaps like overwrite behavior and invalid-xref handling are not critical for basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description compensates by mapping pdf_path to the source PDF, xref to the redact_scan-provided image reference, and output_path to the PNG output. This adds meaningful context beyond the bare parameter names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific operation—extract a specified embedded image from a PDF and save it as PNG—and clearly situates it within a workflow distinct from siblings like redact_scan and redact_apply.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explains when to use the tool: after redact_scan provides an image xref list, extract suspicious logos as templates. It does not explicitly list when-not-to-use cases or compare with alternatives, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glossary_addA
把确认过的敏感词沉淀进词典,后续 scan 自动生效。
| Name | Required | Description | Default |
|---|---|---|---|
| terms | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It usefully discloses that additions persist and automatically affect future scans, but it does not mention duplicate handling, reversibility, permissions, or error behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with two clauses: the first states the core action and the second states the meaningful consequence. There is no filler or redundant restating of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter tool with no output schema, the description is adequately complete: it says what to do, what counts as valid input, and the effect on future scans. Minor omissions like duplicate behavior are not critical for basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides no description for 'terms' (0% coverage), but the description's '确认过的敏感词' supplies the semantic meaning and the criterion for inclusion. For a single string-array parameter, this is sufficient, though limits or formatting constraints are not specified.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the resource (glossary/dictionary) and the action (adding/persisting confirmed sensitive terms), distinguishing it from glossary_remove and glossary_list. The verb '沉淀' is idiomatic, but the meaning is clear enough for an agent to understand the tool's function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It states the appropriate input ('confirmed' sensitive words) and the consequence for future scans, providing implied usage context. However, it does not explicitly contrast with alternatives like glossary_remove, redact_apply, or note when not to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glossary_listA
查看持久化敏感词词典(scan 时自动并入候选)。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the burden of behavioral disclosure. The verb '查看' clearly indicates a non-mutating read operation, and '持久化' plus 'scan 时自动并入候选' disclose the glossary's persistence and its relevance to scan behavior. This is sufficient for a simple list operation with an output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single concise sentence communicates purpose, persistence, and connection to scan behavior. Every word earns its place, and the key action '查看' is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless list tool with an output schema, the description is complete. It names the resource, states the read-only intent, and clarifies how the glossary relates to scans. No critical information is missing for correct selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the baseline is 4. The description correctly does not invent unnecessary parameter details; it focuses on what the tool returns access to. No parameter semantics are needed beyond this.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb '查看' (view) with a clear resource: the persistent sensitive-word glossary. It also distinguishes this from sibling tools like glossary_add and glossary_remove by indicating it is a read-only listing operation, and the parenthetical about scan behavior adds useful scope that goes beyond the tool name itself.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: this glossary is the persistent dictionary that gets automatically merged into candidates during scan. This implies the tool should be used when an agent needs to inspect the active glossary that affects scanning. It does not explicitly enumerate when-not-to-use or mention alternatives, but the context is clear enough for a zero-parameter list tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
glossary_removeC
从词典移除词条。
| Name | Required | Description | Default |
|---|---|---|---|
| terms | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
没有注解提供行为信息,因此描述需完全承担披露责任。仅说“移除”表明这是一种变更操作,但未说明是否永久、是否可撤销、权限要求、对不存在词条的行为、批量删除的边界等关键副作用。
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
描述只有一句话,没有冗余信息,动词和资源都放在最前面,结构上非常简洁。但这种简洁以牺牲行为信息为代价,因此不算完美。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
工具是删除类操作,且无注解、无输出 schema、无参数说明,描述却只有一句话,缺少操作前提、永久性说明、失败场景和返回值预期。对于一个执行破坏性操作的 1 参数工具,信息量明显不足。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema 描述覆盖率为 0%,且描述完全没有解释 terms 参数的语义、格式或匹配规则。虽然“词条”与 terms 存在字面关联,但未说明数组元素是否为精确匹配、为空时行为、重复词条如何处理等,描述未能弥补 schema 的空白。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
描述使用明确的动词“移除”和资源“词典词条”,表明这是从词典中删除条目的操作。与兄弟工具 glossary_add、glossary_list 在动词上形成自然区分,但未显式说明与它们的边界。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
没有说明何时使用此工具、何时应使用 glossary_add 或 glossary_list,也没有说明前置条件或替代方案。唯一能推断用途的只有动词“移除”和兄弟工具名称。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
redact_applyA
执行脱敏(真删除,不可恢复)。terms 必须是已确认的敏感词清单——请先调用 redact_scan 并经用户确认后再调用本工具。logo_templates 仅支持 PDF。
| Name | Required | Description | Default |
|---|---|---|---|
| terms | Yes | ||
| input_path | Yes | ||
| output_path | Yes | ||
| logo_templates | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry behavioral disclosure; it does by warning that the operation is a true deletion and irreversible, and by conditioning invocation on confirmed terms. It could add more about whether the original file is overwritten or what happens on partial matches, but the destructive nature is clearly disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences cover the core behavior, the required preceding workflow, and the one optional-parameter constraint. There is no filler or repetition of schema information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no output schema and no annotations, the description supplies the essential safety context: irreversible deletion and the scan/confirmation prerequisite. It still omits return behavior and whether output_path must differ from input_path, but it is strong enough for an agent to call the tool safely in the intended workflow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate; it clarifies that terms are a confirmed list of sensitive words and that logo_templates only supports PDF. However, input_path and output_path are left entirely to their parameter names, with no format, relationship, or overwrite semantics explained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with '执行脱敏(真删除,不可恢复)' — a specific verb and outcome: apply redaction, true deletion, irreversible. It also distinguishes itself from redact_scan by framing scan as a prerequisite rather than the action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says terms must already be a confirmed sensitive-word list and that redact_scan should be called first, with user confirmation, before invoking this tool. It also states logo_templates is PDF-only, which tells the agent when the optional parameter is usable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
redact_auditA
取证级审计:对象流/文本层/元数据/修订记录/批注/OCR 逐面检查,判定敏感词 是否彻底移除。交付脱敏文件前必须通过本审计。
| Name | Required | Description | Default |
|---|---|---|---|
| terms | Yes | ||
| doc_path | Yes | ||
| logo_templates | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral disclosure. It is transparent about scope—checking multiple layers page-by-page and judging whether sensitive terms are fully removed—but it does not state whether the operation is read-only, whether it generates a report, or what side effects occur. For an audit tool this is a meaningful but incomplete profile.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The entire description is one dense, front-loaded sentence. Every clause contributes: audit rigor, audit surfaces, judgment goal, and required timing. There is no filler or redundant restatement of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema and no annotations, so the description should cover what the audit returns and what is required for invocation. It does not state the return value form (pass/fail, report, etc.), does not explain logo_templates, and does not disclose whether any file is modified. The purpose is clear, but the operational contract is incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain the parameters. It hints at 'terms' via '敏感词' and the file via '脱敏文件', but it never explicitly maps doc_path, terms, or logo_templates to their roles. 'logo_templates' is entirely unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb '审计' (audit) applied to a well-defined resource—redacted documents—and lists exact audit surfaces ('对象流/文本层/元数据/修订记录/批注/OCR'). It also states the success criterion ('判定敏感词是否彻底移除'), which clearly separates this verification tool from sibling redaction/scan tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an explicit usage moment: run this audit before delivering any redacted file ('交付脱敏文件前必须通过本审计'). It does not explicitly name alternatives or say when not to use it, but the delivery gate is a clear contextual signal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
redact_scanA
非破坏性扫描文档(不改文件),发现候选敏感项。支持 PDF(文字/扫描件自动 OCR)、DOCX、XLSX、PPTX、TXT/MD/CSV 等。返回候选清单(词条/来源/位置/次数)、 元数据泄露、格式相关清单。enable_ner 需 zh_core_web_trf 模型;标准/公文类 文档建议关闭(噪声大)。
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | No | ||
| enable_ner | No | ||
| input_path | Yes | ||
| ner_labels | No | ||
| enable_regex | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does well: it discloses non-destructive behavior, automatic OCR on scanned PDFs, the output categories (candidate list, metadata leakage, format-related list), and the NER model prerequisite plus noise caveat. No contradictions with annotations exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three compact sentences with the most important safety property (non-destructive) front-loaded, followed by formats, outputs, and the NER caveat. No filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers purpose, formats, outputs, and a key parameter caveat, which is substantial for a tool with no annotations or output schema. However, it omits explanations for four parameters and does not describe return structure details beyond the high-level list, leaving an agent to infer important call semantics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for five parameters. It only adds meaning for enable_ner (model requirement, recommendation to disable). It does not explain keywords, ner_labels, enable_regex, or input_path beyond their property names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (scan), a resource (documents), a key behavioral distinction (non-destructive, does not modify files), and the output (candidate sensitive items). This clearly differentiates it from siblings like redact_apply, which presumably applies changes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It clearly conveys the scanning context and supported document types, and gives an explicit conditional usage note (disable NER for standard/official documents due to noise). It does not explicitly name alternatives or say 'use redact_apply to apply redactions,' so it stops short of a full when/when-not comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct role: scanning, applying, auditing, glossary management, and image extraction. Even redact_scan and redact_audit are sharply differentiated as pre-redaction candidate discovery versus post-redaction forensic verification.
Most tools follow a clear domain-prefix pattern: redact_* for document operations and glossary_* for dictionary operations. The exception is extract_image, which uses verb+noun ordering rather than prefix+operation, creating a minor but noticeable inconsistency.
Seven tools is well-scoped for a document redaction server. Each tool fills a necessary role in the workflow without redundancy or bloat, and the count supports a complete redaction pipeline.
The toolkit covers the full redaction lifecycle: scan for candidates, apply redaction, audit the result, and persist confirmed terms in a glossary. Supporting image extraction and glossary management fills the surrounding workflow needs, leaving no obvious dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for detecting and redacting PII (Personally Identifiable Information) in PDF documents.
Stateless PII redaction over MCP/REST. Free ≤1000 words or $0.01/call; file upload supported.
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Hosted MCP server: convert PDFs to clean, LLM-ready Markdown with tables, formulas and OCR.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceLocal-first CLI and MCP server for redacting sensitive text before sharing logs, configs, and errors with AI tools.MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server that provides comprehensive PDF redaction capabilities, including text and image redaction, search, and session-based in-memory operations using FastMCP and pymupdf.11MIT
- AlicenseAqualityAmaintenanceAn MCP server that redacts PII/PHI from text before it ever reaches an LLM — self-hosted, fail-closed, and HIPAA-aware.3MIT
- AlicenseNot gradedqualityBmaintenanceMCP server that extracts clean text, tables, and structured data from documents, images, code, and audio files, supporting 97 formats with OCR, transcription, and code intelligence.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/agxhub/doc-redactor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server