opencode-orchestrator-mcp 0.6.3

MCP server for orchestrator-style agents to spawn and manage OpenCode sessions
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "opencode-orchestrator-mcp"
version = "0.6.3"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server for orchestrator-style agents to spawn and manage OpenCode sessions"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/allisoneer/agentic_auxilary"
resolver = "2"

[package.metadata.repo]
role = "app"
family = "agentic-tools"

[package.metadata.repo.integrations]
mcp = true
logging = true
napi = false

[package.metadata.binstall]
pkg-url = "{repo}/releases/download/{name}-v{version}/{name}-{target}.tar.xz"
pkg-fmt = "txz"
bin-dir = "{name}-{target}/{bin}{binary-ext}"
disabled-strategies = [
    "quick-install",
    "compile",
]

[features]
default = []
test-support = []

[lib]
name = "opencode_orchestrator_mcp"
path = "src/lib.rs"

[[bin]]
name = "opencode-orchestrator-mcp"
path = "src/main.rs"

[[test]]
name = "activity_timeout_wiremock"
path = "tests/activity_timeout_wiremock.rs"

[[test]]
name = "cancellation_wiremock"
path = "tests/cancellation_wiremock.rs"

[[test]]
name = "command_filtering_wiremock"
path = "tests/command_filtering_wiremock.rs"

[[test]]
name = "fast_idle_race_wiremock"
path = "tests/fast_idle_race_wiremock.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "list_tools_wiremock"
path = "tests/list_tools_wiremock.rs"

[[test]]
name = "permission_flow_wiremock"
path = "tests/permission_flow_wiremock.rs"

[[test]]
name = "question_flow_wiremock"
path = "tests/question_flow_wiremock.rs"

[[test]]
name = "recovery_wiremock"
path = "tests/recovery_wiremock.rs"

[dependencies.agentic-config]
version = "0.5.0"

[dependencies.agentic-tools-core]
version = "0.4.0"

[dependencies.agentic-tools-mcp]
version = "0.1.7"

[dependencies.agentic_logging]
version = "0.2.0"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.futures]
version = "0.3"

[dependencies.opencode_rs]
version = "0.10.0"
features = ["server"]

[dependencies.rustls]
version = "0.23"
features = ["aws_lc_rs"]
default-features = false

[dependencies.schemars]
version = "1"
features = ["derive"]

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "derive",
]

[dependencies.serde_json]
version = "1.0"

[dependencies.thoughts-tool]
version = "0.12.0"

[dependencies.tokio]
version = "1"
features = [
    "full",
    "macros",
    "rt-multi-thread",
    "time",
    "sync",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.serial_test]
version = "3.2"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]

[dev-dependencies.wiremock]
version = "0.6"

[lints.clippy]
allow_attributes = "warn"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
clone_on_ref_ptr = "warn"
create_dir = "warn"
dbg_macro = "warn"
default_trait_access = "allow"
exit = "warn"
expect_used = "warn"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
rest_pat_in_fully_bound_structs = "warn"
self_named_module_files = "warn"
significant_drop_tightening = "allow"
struct_excessive_bools = "allow"
suboptimal_flops = "allow"
too_many_lines = "allow"
undocumented_unsafe_blocks = "warn"
unused_result_ok = "warn"
unwrap_used = "warn"
wildcard_dependencies = "warn"

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]