mirror of
https://github.com/haris-musa/excel-mcp-server.git
synced 2025-12-24 00:26:38 +08:00
Feat/add stdio transport (#25)
* feat: Add stdio transport method. Update relevant documentation and code to support both SSE and stdio connection methods, initialize the EXCEL_FILES_PATH variable and perform the corresponding path handling. * Remove PyPI mirror configuration.
This commit is contained in:
@ -1,26 +1,27 @@
|
||||
[project]
|
||||
name = "excel-mcp-server"
|
||||
version = "0.1.1"
|
||||
description = "MCP server for Excel file manipulation"
|
||||
description = "Excel MCP Server for manipulating Excel files"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"mcp[cli]>=1.2.0",
|
||||
"openpyxl>=3.1.2"
|
||||
"mcp[cli]>=1.6.0",
|
||||
"openpyxl>=3.1.2",
|
||||
"typer>=0.15.1"
|
||||
]
|
||||
[[project.authors]]
|
||||
name = "haris"
|
||||
email = "haris.musa@outlook.com"
|
||||
|
||||
[project.scripts]
|
||||
excel-mcp-server = "excel_mcp.__main__:app"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project.scripts]
|
||||
excel-mcp-server = "excel_mcp.__main__:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/excel_mcp"]
|
||||
|
||||
[tool.hatch.build]
|
||||
packages = ["src/excel_mcp"]
|
||||
packages = ["src/excel_mcp"]
|
||||
|
||||
Reference in New Issue
Block a user