{"id":27683,"library":"deepagents-acp","title":"Deep Agents ACP","description":"Agent Client Protocol (ACP) integration for Deep Agents, enabling remote agent execution and monitoring via the ACP specification. Currently at version 0.0.6, pre-release stage with rapid iteration.","status":"active","version":"0.0.6","language":"python","source_language":"en","source_url":"https://github.com/langchain-ai/deepagents","tags":["agent-client-protocol","acp","deep-agents","langchain","agent-framework"],"install":[{"cmd":"pip install deepagents-acp","lang":"bash","label":"Install from PyPI"}],"dependencies":[{"reason":"Core Deep Agents framework required for agent definitions and orchestration","package":"deepagents","optional":false},{"reason":"HTTP client for ACP protocol communication","package":"httpx","optional":false},{"reason":"Data validation and settings management","package":"pydantic","optional":false}],"imports":[{"wrong":"from deepagents_acp import ACPServer","symbol":"ACPServer","correct":"import deepagents_acp"}],"quickstart":{"code":"import os\nfrom deepagents import Agent\nfrom deepagents_acp import ACPClient\n\n# Create an agent (e.g., using OpenAI)\nagent = Agent(\n    name=\"my-agent\",\n    instructions=\"You are a helpful assistant.\",\n    model=\"openai/gpt-4o\"\n)\n\n# Connect to a remote ACP server\nclient = ACPClient(base_url=os.environ.get(\"ACP_SERVER_URL\", \"http://localhost:8000\"))\n\n# Execute a task\nresult = client.run(agent=agent, input=\"Hello, world!\")\nprint(result)\n","lang":"python","description":"Basic usage: define an agent and execute it via ACP client."},"warnings":[{"fix":"Use client.run_stream(agent, input) to receive streaming events.","message":"ACPClient.run() does not support streaming responses in current version; use .run_stream() for streaming.","severity":"gotcha","affected_versions":"<=0.0.6"},{"fix":"Ensure deepagents and deepagents-acp are installed from the same release (e.g., both 0.5.8+).","message":"The ACP protocol version is tightly coupled to deepagents version; mismatched versions cause connection errors.","severity":"breaking","affected_versions":"all"},{"fix":"Use `from deepagents_acp import ACPServer` instead.","message":"The old `from deepagents_acp.server import ACP` import path is deprecated and will be removed in v0.1.0.","severity":"deprecated","affected_versions":">=0.0.4, <0.1.0"}],"env_vars":null,"search_vec":"'0.0.6':25 'acp':3,7,20,37 'agent':2,4,11,14,34,40,43 'agent-client-protocol':33 'agent-framework':42 'client':5,35 'current':22 'deep':1,10,39 'deep-ag':38 'enabl':12 'execut':15 'framework':44 'integr':8 'iter':32 'langchain':41 'monitor':17 'pre':27 'pre-releas':26 'protocol':6,36 'rapid':31 'releas':28 'remot':13 'specif':21 'stage':29 'version':24 'via':18","created_at":"2026-05-09T05:51:32.401223+00:00","updated_at":"2026-05-09T05:51:32.401223+00:00","problems":null,"ecosystem":"pypi","meta_description":null,"install_score":null,"quickstart_score":null,"quickstart_tag":null,"pypi_latest":null,"cli_name":"","cli_version":null,"type":"library","homepage":"https://docs.langchain.com/oss/python/deepagents/overview","github":"https://github.com/langchain-ai/deepagents","docs":"https://reference.langchain.com/python/deepagents/","changelog":null,"pypi":"https://pypi.org/project/deepagents-acp/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"categories":["llm-agents","ai-ml"],"base_url":null,"auth_type":null,"provenance":{"verified_status":"passing","verified_at":"2026-07-03","last_verified":"2026-07-03","next_check":"2026-08-02","install_tag":null}}