Subagents and web search in Claude Code February 16, 2026 Ollama now supports subagents and web search in Claude Code.
Subagents and web search in Claude Code February 16, 2026 Ollama now supports subagents and web search in Claude Code. No MCP servers or API keys required. Get started ollama launch claude --model minimax-m2.5:cloud It works with any model on Ollama’s cloud. Subagents Subagents can run tasks in parallel, such as file search, code exploration, and research, each in their own context. Longer coding sessions stay productive. Side tasks don’t fill the context with noise. Some models will naturally trigger subagents when needed (minimax-m2.5, glm-5, kimi-k2.5), but you can force triggering subagents by telling the model to “use/spawn/create subagents” Example prompts: > spawn subagents to explore the auth flow, payment integration, and notification system > audit security issues, find performance bottlenecks, and check accessibility in parallel with subagents > create subagents to map the database queries, trace the API routes,…