MCP server for listing and retrieving minimal valid blank files from blankfiles.com.
{
"mcpServers": {
"io-github-filearchitect-blankfiles-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for listing and retrieving minimal valid blank files from blankfiles.com.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 40 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.filearchitect/blankfiles-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Laravel application that powers blankfiles.com. Browse and download minimal valid blank files by type and category. File data and assets are served from the filearchitect/blank-files repository via a configurable CDN.
git clone https://github.com/filearchitect/blankfiles-website.git
cd blankfiles-website
composer install
cp .env.example .env
php artisan key:generate
Set CDN_URL in .env (see Configuration). Then build the frontend and run the app:
npm install && npm run build
php artisan serve
Or use Laravel Herd with a .test domain.
| Variable | Description |
| --------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| CDN_URL | Required. Base URL used to construct downloadable file URLs as {CDN_URL}/files/{filename}. Default: https://raw.githubusercontent.com/filearchitect/blank-files/main (set in config/app.php). |
| CATALOG_URL | Optional. Direct URL for the catalog JSON (files/files.json). Default is https://raw.githubusercontent.com/filearchitect/blank-files/main/files/files.json for freshness. |
| CACHE_ENABLED | Optional. When true, the file list from the CDN is cached. TTL is controlled by CATALOG_TTL_MINUTES (default 10). See config/cache.php and app/Services/FileService.php. |
| CATALOG_TTL_MINUTES | Optional. Cache TTL in minutes for the remote catalog when CACHE_ENABLED=true. Lower values reflect new formats sooner; higher values reduce CDN fetches. |
| API_KEYS | Optional. Comma-separated API keys for higher-rate API clients (used by X-API-Key or Authorization: Bearer ...). |
| API_PUBLIC_RATE_LIMIT | Optional. Public API requests/minute limit (default 30). |
| API_KEY_RATE_LIMIT | Optional. API-key requests/minute limit (default 300). |
| API_USAGE_LOG_CHANNEL | Optional. Logging channel for API usage analytics (default api_usage). |
| OPENPANEL_CLIENT_ID | Optional. Enables OpenPanel web analytics script when set. |
| OPENPANEL_CLIENT_SECRET | Optional. Reserved for server-side OpenPanel events (not exposed to browser script). |
| Path | Purpose |
| --------------------------------------------- | ------------------------------------------------------------ |
| app/Http/Controllers/FileController.php | Web: homepage, file detail page, download proxy. |
| app/Http/Controllers/Api/FileController.php | API: list all files, list files by type. |
| app/Services/FileService.php | Fetches catalog JSON (CATALOG_URL) and formats file URLs from CDN_URL. |
| routes/web.php