-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·61 lines (58 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
executable file
·61 lines (58 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[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 = "[email protected]" },
]
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",
]