{"library":"nteract","title":"nteract","description":"nteract provides an MCP (Model Context Protocol) server that brings AI agents into Jupyter notebooks. It allows LLMs like Claude, ChatGPT, Gemini, and OpenCode to execute code, read outputs, and interact with notebook environments. Version 2.3.1 requires Python >=3.10. Release cadence is irregular, with recent updates focused on MCP protocol support.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install nteract"],"cli":{"name":"nteract","version":"nteract 2.3.1"}},"imports":["import nteract.mcp_server"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import os\nfrom nteract.mcp_server import run_server\n\n# Ensure API key is set in environment\napi_key = os.environ.get('ANTHROPIC_API_KEY', '')\nif not api_key:\n    print(\"Please set ANTHROPIC_API_KEY environment variable\")\nelse:\n    run_server()","lang":"python","description":"Start the nteract MCP server for AI agent integration. Requires an API key (e.g., Anthropic) set in environment.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}