pyproject.toml•2.04 kB
[project]
name = "scantool"
version = "0.10.1"
description = "MCP server for multi-language code analysis with structure extraction, metadata parsing, and search capabilities across Python, JavaScript, TypeScript, Rust, Go, C/C++, Java, PHP, C#, Ruby, Markdown, plain text, and images"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Marius Berge Eide" }
]
keywords = ["mcp", "file-scanner", "tree-sitter", "code-analysis", "structure-extraction"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastmcp>=2.12.4",
"tree-sitter>=0.23.2",
"tree-sitter-python>=0.23.6",
"tree-sitter-javascript>=0.23.1",
"tree-sitter-typescript>=0.23.2",
"tree-sitter-rust>=0.23.2",
"tree-sitter-go>=0.23.3",
"tree-sitter-markdown>=0.3.2",
"tree-sitter-cpp>=0.23.0",
"tree-sitter-java>=0.23.2",
"tree-sitter-ruby>=0.23.0",
"tree-sitter-c-sharp>=0.23.0",
"tree-sitter-php>=0.23.4",
"pillow>=10.0.0",
"uvicorn>=0.32.1",
"tree-sitter-sql>=0.3.11",
"pglast>=7.7",
"httpx>=0.27.0",
"nest-asyncio>=1.6.0",
"ollama>=0.3.0",
"PyPDF2>=3.0.0",
"pdf2image>=1.16.0",
"docling>=2.0.0",
"mlx>=0.20.0",
"mlx-vlm>=0.3.0",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
]
[project.scripts]
scantool = "scantool:main"
scantool-http = "scantool.server:http_main"
[project.urls]
Homepage = "https://github.com/mariusei/file-scanner-mcp"
Repository = "https://github.com/mariusei/file-scanner-mcp"
Issues = "https://github.com/mariusei/file-scanner-mcp/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"