* feat: expose getJob and getJobLogs as MCP tools Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: add integration test for getJob/getJobLogs MCP endpoint tools Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: add MCP client integration test for getJob and getJobLogs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "windmill-test-utils"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_test_utils"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
private = ["windmill-api/private"]
|
|
enterprise = ["windmill-api/enterprise"]
|
|
python = ["windmill-common/python"]
|
|
deno_core = ["dep:windmill-runtime-nativets"]
|
|
mcp = ["windmill-api/mcp"]
|
|
agent_worker_server = ["dep:windmill-api-agent-workers"]
|
|
run_inline = ["windmill-api/run_inline"]
|
|
duckdb = ["windmill-worker/duckdb"]
|
|
|
|
[dependencies]
|
|
windmill-api = { workspace = true, default-features = false }
|
|
windmill-worker.workspace = true
|
|
windmill-queue.workspace = true
|
|
windmill-common = { workspace = true, default-features = false }
|
|
windmill-api-client.workspace = true
|
|
windmill-runtime-nativets = { workspace = true, optional = true }
|
|
windmill-api-agent-workers = { workspace = true, optional = true }
|
|
|
|
sqlx.workspace = true
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
axum.workspace = true
|
|
async-trait.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|