[project]
name = "mcp-filesystem"
version = "0.2.0"
description = "MCP server for filesystem search and manipulation with granular search, content search and file edits"
authors = [
{ name = "alex furrier", email = "safurrier@gmail.com" },
]
requires-python = ">= 3.10"
readme = "README.md"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: System :: Filesystems",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
]
keywords = ["mcp", "filesystem", "claude", "ai", "fastmcp"]
dependencies = [
# Core MCP Server
"fastmcp>=2.13.0",
"httpx>=0.28.0",
"typer>=0.15.0",
"uvicorn>=0.34.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
# Excel Support
"openpyxl>=3.1.0",
# Data Processing (used by kb_tools, http_routes)
"pandas>=2.0.0",
# Document Processing (used by kb_tools, http_routes)
"python-docx>=1.0.0",
"PyPDF2>=3.0.0",
"python-pptx>=0.6.21",
# Image Generation (used by image_tools)
"mermaid-py>=0.3.0",
# Optional: Web Crawling (used by web_crawl_tools)
"crawl4ai>=0.3.0",
"playwright>=1.48.0",
# Optional: Chinese Text Processing
"jieba>=0.42.1",
]
[project.scripts]
mcp-filesystem = "mcp_filesystem.__main__:app"
mcp-fs = "mcp_filesystem:main"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"mcp_filesystem",
]