mcp-fintel
v1.1.0
Published
File Intelligence MCP Server
Readme
mcp-fintel
A reusable, Playwright-style MCP server for file intelligence tools. Runs via stdio and accepts binary file uploads (Base64).
Installation
npm install -g mcp-fintelUsage
Run directly with npx:
npx mcp-fintelMCP Configuration
Add to your MCP client configuration (e.g., claude_desktop_config.json):
{
"mcpServers": {
"file-intel": {
"command": "npx",
"args": ["mcp-fintel"]
}
}
}Tools
- file_inspector: Analyze file metadata and structure.
- content_summarizer: Summarize file content (brief/executive/detailed).
- text_summarizer: Summarize raw text input.
- data_analyzer: Analyze CSV/JSON data structure and quality.
- file_comparison: Compare two files (strict/semantic).
- character_counter: Count characters in text or file.
Publishing
To publish this package to npm:
- Login to npm:
npm login - Build the project:
npm run build - Publish:
npm publish --access public
