Synced from monorepo Changes: - Temporarily disable session share link creation in the TUI - Do not approve plan on empty Enter from the revise prompt - Expose chat product Skills via ACP available_commands_update - Return immediately from a blocking wait on an already-completed ACP task - Split headless pager module for clearer structure - Stop git worktree prune from removing user registrations on resume - Use compaction sampler tokenizer for item token counts - Opt-in extra root CAs via GROK_EXTRA_CA_BUNDLE - Cancel all session subagents when the user stops - Let the session persistence actor exit when its session ends - Make fullscreen terminal resize much cheaper on long sessions - Report honestly from kill_task when an ACP task does not exist - Hide /usage for external-auth deployments - Forward the history-load trailer’s computer_reason to the client - Remove ineffective no-op tool reminder - Declare slash-command screen-mode support in one place - Keep settings enum picker on the committed value until Enter - Reap a PTY’s full process tree - Stream tool calls from headless mode over ACP - Bridge gateway task lifecycle to ACP for chat session background tasks - Don’t warn about truncated history on a suppressed replay - Fit full-replace summarizer input and recover on context-length errors - Stop dropping agents over an unrecognized frontmatter color - Add /undo as a slash alias for /rewind - Harden sleep/wake token-refresh paths against forced re-login - Add session/list ACP method - Give each sampling backend its own conversion module - Treat an unenrolled child process as a lint error - Suppress the cancelled marker on send-now wake turns - Stop tearing down Roslyn on every edit, and read C# diagnostics Source-Revision: 2a28b4a86cfc4a4c133c35b7fc2a6a9964387c39
77 lines
2.6 KiB
TOML
77 lines
2.6 KiB
TOML
[package]
|
|
license = "Apache-2.0"
|
|
name = "xai-grok-mcp"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "MCP integration crate. Quarantines rmcp + reqwest 0.13 (rmcp 2.1 requires reqwest >= 0.13.2 while the rest of the workspace uses reqwest 0.12) and owns the MCP credential store and OAuth flow orchestrator."
|
|
authors = ["xAI"]
|
|
|
|
[dependencies]
|
|
rmcp = { version = "2.1", features = [
|
|
"auth",
|
|
"client",
|
|
"transport-async-rw",
|
|
"transport-streamable-http-client-reqwest",
|
|
"reqwest",
|
|
] }
|
|
xai-grok-extra-ca = { workspace = true }
|
|
xai-grok-version = { workspace = true }
|
|
# reqwest 0.13 feature set for MCP transports. Notably:
|
|
# - `blocking` is for build-script style use (not actually used here today, but
|
|
# kept for future MCP transports that may need it).
|
|
# - `query`/`form` opt-in features stay off; rmcp transports don't use them.
|
|
reqwest = { version = "0.13", default-features = false, features = [
|
|
"blocking",
|
|
"json",
|
|
"rustls",
|
|
"stream",
|
|
] }
|
|
|
|
# Deps for credentials.rs + oauth.rs.
|
|
async-trait = { workspace = true }
|
|
axum = { workspace = true }
|
|
oauth2 = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
webbrowser = { workspace = true }
|
|
xai-grok-config = { workspace = true }
|
|
|
|
# For mcp_http_client.rs (rmcp trait signatures). Must match rmcp 2.1's own
|
|
# versions or the trait types won't unify.
|
|
http = { workspace = true }
|
|
sse-stream = "0.2"
|
|
|
|
# Deps for servers.rs.
|
|
agent-client-protocol = { workspace = true }
|
|
xai-file-utils = { path = "../xai-file-utils" }
|
|
futures = { workspace = true }
|
|
regex = { workspace = true }
|
|
which = { workspace = true }
|
|
# Atomic descriptor writes (NamedTempFile + persist) in materialize_descriptors.
|
|
tempfile = { workspace = true }
|
|
xai-grok-tools = { workspace = true }
|
|
xai-grok-telemetry = { workspace = true }
|
|
xai-grok-workspace-types = { workspace = true }
|
|
xai-tool-protocol = { workspace = true }
|
|
xai-tool-runtime = { workspace = true }
|
|
xai-tool-types = { workspace = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Used in servers.rs test `test_same_raw_name_different_servers_no_local_registry_collision`
|
|
# to verify MCP tools register into a `LocalRegistry` without collision.
|
|
xai-computer-hub-sdk = { workspace = true }
|
|
# `test-util` enables `tokio::time::pause` / `advance`, required by
|
|
# the deterministic timing tests in `liveness.rs`.
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
|
|
[lints]
|
|
workspace = true
|