Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for file operations and project scaffolding - Windows-first, secure, sandboxed <p align="center"><img src="logo.png" alt="MCP File Forge" width="200"></p> <h1 align="center">MCP File Forge</h1> <p align="center"> Secure file operations and project scaffolding for AI agents. <br /> Part of <a href="https://mcptoolshop.com">MCP Tool Shop</a> </p> <p align="center"> <a href="https://www.npmjs.com/package/@mcptoolshop/file-forge"><img alt="npm version" src="https://img.shields.io/npm/v/@mcptoolshop Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
@mcptoolshop/file-forge is best for mcp, model-context-protocol, file-operations workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for file operations and project scaffolding - Windows-first, secure, sandboxed <p align="center"><img src="logo.png" alt="MCP File Forge" width="200"></p> <h1 align="center">MCP File Forge</h1> <p align="center"> Secure file operations and project scaffolding for AI agents. <br /> Part of <a href="https://mcptoolshop.com">MCP Tool Shop</a> </p> <p align="center"> <a href="https://www.npmjs.com/package/@mcptoolshop/file-forge"><img alt="npm version" src="https://img.shields.io/npm/v/@mcptoolshop
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Mcp Tool Shop Org
Artifacts
0
Benchmarks
0
Last release
0.2.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/mcp-tool-shop-org/mcp-file-forge.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Mcp Tool Shop Org
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
npm install -g @mcptoolshop/file-forge
bash
npx @mcptoolshop/file-forge
json
{
"mcpServers": {
"file-forge": {
"command": "npx",
"args": ["-y", "@mcptoolshop/file-forge"],
"env": {
"MCP_FILE_FORGE_ALLOWED_PATHS": "C:/Projects,C:/Users/you/Documents"
}
}
}
}json
{
"mcpServers": {
"file-forge": {
"command": "mcp-file-forge",
"env": {
"MCP_FILE_FORGE_ALLOWED_PATHS": "C:/Projects"
}
}
}
}json
{
"sandbox": {
"allowed_paths": ["C:/Projects", "C:/Users/you/Documents"],
"denied_paths": ["**/secrets/**", "**/.env"],
"follow_symlinks": false,
"max_file_size": 52428800,
"max_depth": 20
},
"templates": {
"paths": ["./templates", "~/.mcp-file-forge/templates"]
},
"logging": {
"level": "info",
"file": "./logs/mcp-file-forge.log"
},
"read_only": false
}bash
# Install dependencies npm install # Build npm run build # Watch mode npm run dev # Run tests npm test # Lint npm run lint
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for file operations and project scaffolding - Windows-first, secure, sandboxed <p align="center"><img src="logo.png" alt="MCP File Forge" width="200"></p> <h1 align="center">MCP File Forge</h1> <p align="center"> Secure file operations and project scaffolding for AI agents. <br /> Part of <a href="https://mcptoolshop.com">MCP Tool Shop</a> </p> <p align="center"> <a href="https://www.npmjs.com/package/@mcptoolshop/file-forge"><img alt="npm version" src="https://img.shields.io/npm/v/@mcptoolshop
MCP File Forge is a Model Context Protocol (MCP) server that gives AI agents sandboxed, policy-controlled access to the local file system. It ships 17 tools across five categories:
| Category | Tools | Description |
|----------|-------|-------------|
| Reading | read_file, read_directory, read_multiple | Read files and directory listings |
| Writing | write_file, create_directory, copy_file, move_file, delete_file | Create, modify, copy, move, and delete |
| Search | glob_search, grep_search, find_by_content | Find files by name pattern or content |
| Metadata | file_stat, file_exists, get_disk_usage, compare_files | Inspect size, timestamps, existence |
| Scaffolding | scaffold_project, list_templates | Create projects from templates with variable substitution |
Key properties:
{{var}} / ${var} substitution plus path-level __var__ renaming.npm install -g @mcptoolshop/file-forge
Or run directly with npx:
npx @mcptoolshop/file-forge
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"file-forge": {
"command": "npx",
"args": ["-y", "@mcptoolshop/file-forge"],
"env": {
"MCP_FILE_FORGE_ALLOWED_PATHS": "C:/Projects,C:/Users/you/Documents"
}
}
}
}
If you installed globally you can point directly at the binary:
{
"mcpServers": {
"file-forge": {
"command": "mcp-file-forge",
"env": {
"MCP_FILE_FORGE_ALLOWED_PATHS": "C:/Projects"
}
}
}
}
| Tool | Description | Key Parameters |
|------|-------------|----------------|
| read_file | Read file contents | path, encoding?, start_line?, end_line?, max_size_kb? |
| read_directory | List directory entries | path, recursive?, max_depth?, include_hidden?, pattern? |
| read_multiple | Batch-read multiple files | paths, encoding?, fail_on_error? |
| Tool | Description | Key Parameters |
|------|-------------|----------------|
| write_file | Write or overwrite a file | path, content, encoding?, create_dirs?, overwrite?, backup? |
| create_directory | Create a directory | path, recursive? |
| copy_file | Copy a file or directory | source, destination, overwrite?, recursive? |
| move_file | Move or rename | source, destination, overwrite? |
| delete_file | Delete a file or directory | path, recursive?, force? |
| Tool | Description | Key Parameters |
|------|-------------|----------------|
| glob_search | Find files by glob pattern | pattern, base_path?, max_results?, include_dirs? |
| grep_search | Search file contents with regex | pattern, path?, glob?, case_sensitive?, max_results?, context_lines? |
| find_by_content | Literal text search (no regex) | text, path?, file_pattern?, max_results? |
| Tool | Description | Key Parameters |
|------|-------------|----------------|
| file_stat | File/directory statistics | path |
| file_exists | Check existence and type | path, type? (file / directory / any) |
| get_disk_usage | Directory size breakdown | path, max_depth? |
| compare_files | Compare two paths | path1, path2 |
| Tool | Description | Key Parameters |
|------|-------------|----------------|
| scaffold_project | Create project from template | template, destination, variables?, overwrite? |
| list_templates | List available templates | category? |
Full parameter documentation, examples, and error codes are in the HANDBOOK.md.
| Variable | Description | Default |
|----------|-------------|---------|
| MCP_FILE_FORGE_ALLOWED_PATHS | Comma-separated list of allowed root directories | . (cwd) |
| MCP_FILE_FORGE_DENIED_PATHS | Comma-separated denied path glob patterns | **/node_modules/**, **/.git/** |
| MCP_FILE_FORGE_READ_ONLY | Disable all write operations | false |
| MCP_FILE_FORGE_MAX_FILE_SIZE | Maximum file size in bytes | 104857600 (100 MB) |
| MCP_FILE_FORGE_MAX_DEPTH | Maximum recursion depth | 20 |
| MCP_FILE_FORGE_FOLLOW_SYMLINKS | Allow following symlinks outside sandbox | false |
| MCP_FILE_FORGE_TEMPLATE_PATHS | Comma-separated template directories | ./templates |
| MCP_FILE_FORGE_LOG_LEVEL | Log verbosity (error, warn, info, debug) | info |
| MCP_FILE_FORGE_LOG_FILE | Path to a log file (in addition to stderr) | none |
Create mcp-file-forge.json (or .mcp-file-forge.json) in or above your working directory:
{
"sandbox": {
"allowed_paths": ["C:/Projects", "C:/Users/you/Documents"],
"denied_paths": ["**/secrets/**", "**/.env"],
"follow_symlinks": false,
"max_file_size": 52428800,
"max_depth": 20
},
"templates": {
"paths": ["./templates", "~/.mcp-file-forge/templates"]
},
"logging": {
"level": "info",
"file": "./logs/mcp-file-forge.log"
},
"read_only": false
}
Configuration priority (highest wins):
MCP File Forge enforces several layers of protection to keep AI agents from reaching outside their designated workspace:
allowed_paths list before any I/O occurs.**/secrets/**)... sequences that would escape the sandbox are rejected.max_file_size are refused to prevent memory exhaustion.max_depth levels.MCP_FILE_FORGE_READ_ONLY=true to disable write_file, create_directory, copy_file, move_file, delete_file, and scaffold_project.\0 are refused.| Document | Description | |----------|-------------| | HANDBOOK.md | Deep-dive: security model, tool reference, templates, architecture, FAQ | | CHANGELOG.md | Release history (Keep a Changelog format) | | docs/PLANNING.md | Internal planning and research notes |
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
# Run tests
npm test
# Lint
npm run lint
Author: mcp-tool-shop
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T00:09:02.269Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "file-operations",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "project-scaffolding",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "anthropic",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:model-context-protocol|supported|profile capability:file-operations|supported|profile capability:project-scaffolding|supported|profile capability:claude|supported|profile capability:anthropic|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Mcp Tool Shop Org",
"href": "https://github.com/mcp-tool-shop-org/mcp-file-forge#readme",
"sourceUrl": "https://github.com/mcp-tool-shop-org/mcp-file-forge#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:15:07.751Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:15:07.751Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-mcp-tool-shop-org-mcp-file-forge/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to @mcptoolshop/file-forge and adjacent AI workflows.