v0.2.0: Plug-and-play — dual transport (stdio+HTTP), AYON 1.15.4 compat, Dockerfile

- client.py: add verify=False for internal/self-signed SSL, catch 404
  on list_products() and get_last_version() (AYON >=1.15 compat)
- server.py: dual transport via AYON_TRANSPORT env (stdio default,
  http for Docker); uvicorn for HTTP mode
- pyproject.toml: bump to 0.2.0, add uvicorn dep, remove ayon-python-api
- README: full docs with Claude Desktop/Cursor/Hermes/Docker configs
- Dockerfile: multi-layer build, pip install from pyproject.toml
- .dockerignore: exclude venv, cache, dist
This commit is contained in:
Hermes Agent
2026-06-28 11:30:02 +00:00
parent 7a6e237c78
commit 3b0f64648b
6 changed files with 167 additions and 40 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
[project]
name = "ayon-mcp"
version = "0.1.0"
description = "MCP server for AYON: AI agents can publish CGI assets via Model Context Protocol"
version = "0.2.0"
description = "MCP server for AYON: AI agents publish CGI assets via Model Context Protocol. Works with Claude Desktop, Cursor, Hermes, and any MCP-compatible client."
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"ayon-python-api>=1.0.0",
"uvicorn>=0.30.0",
]
[project.scripts]