[project] name = "dify-mcp" version = "0.1.0" description = "MCP server exposing Dify knowledge base retrieval to Cursor and other MCP clients" readme = "README.md" requires-python = ">=3.11" license = "MIT" license-files = ["LICENSE"] authors = [ { name = "salted-butter-joshua", email = "chenshidatou@gmail.com" }, ] keywords = ["mcp", "model-context-protocol", "dify", "rag", "knowledge-base", "retrieval", "llm"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", ] dependencies = [ "httpx>=0.27.0", "mcp>=1.6.0", "pydantic-settings>=2.0.0", ] [project.urls] Homepage = "https://github.com/salted-butter-joshua/dify-mcp" Repository = "https://github.com/salted-butter-joshua/dify-mcp" Issues = "https://github.com/salted-butter-joshua/dify-mcp/issues" [project.scripts] dify-mcp = "dify_mcp.server:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/dify_mcp"]