Major update with new capabilities:
- Rename package from ilspy_mcp_server to mcilspy
- Add 6 new dnfile-based tools that work without ilspycmd:
- search_methods, search_fields, search_properties
- list_events, list_resources, get_metadata_summary
- Add installation/diagnostic tools:
- check_ilspy_installation: verify toolchain status
- install_ilspy: platform-aware installer with auto-detection
for pacman, apt, dnf, zypper, homebrew, winget, chocolatey
- Fix metadata_reader bugs:
- Use _get_row_index helper consistently for dnfile compatibility
- Handle HeapItemBinary conversion for public key tokens
- Update documentation with all 14 tools
63 lines
1.6 KiB
TOML
63 lines
1.6 KiB
TOML
[project]
|
|
name = "mcilspy"
|
|
version = "0.1.1"
|
|
description = "MCP Server for ILSpy .NET Decompiler"
|
|
authors = [
|
|
{name = "Borealin", email = "me@borealin.cn"}
|
|
]
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"pydantic>=2.7.0",
|
|
"dnfile>=0.15.0", # Direct .NET metadata parsing
|
|
]
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
keywords = ["mcp", "ilspy", "decompiler", "dotnet", "csharp", "reverse-engineering"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: Debuggers",
|
|
"Topic :: System :: Software Distribution",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/Borealin/ilspy-mcp-server"
|
|
Repository = "https://github.com/Borealin/ilspy-mcp-server.git"
|
|
Issues = "https://github.com/Borealin/ilspy-mcp-server/issues"
|
|
|
|
[project.scripts]
|
|
mcilspy = "mcilspy.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcilspy"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/src",
|
|
"/README.md",
|
|
"/LICENSE",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
line-length = 100
|
|
src = ["src"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
|
|
ignore = ["E501"] # line length handled by formatter
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double" |