ATRIUMsearch → argument graph
ClaimArticle

LLM now supports server-side tools from multiple providers, including OpenAI's CodeInterpreter and WebSearch, and Anthropic's WebSearch, WebFetch, CodeExecution, and MCP integration.

Server-side tools like code execution and web search are now invocable directly from LLM prompts across OpenAI and Anthropic providers, including Anthropic MCP calls against remote servers. ✦ AI generated

Simon Willison · Simon Willison's Weblog · 2026-08-04 · original ↗

LLM calls can now use server-side tools from various providers. OpenAI provide a code execution environment as a server-side tool; LLM can now run prompts that benefit from that like so: llm --tool CodeInterpreter 'Show current python and SQLite versions' OpenAI also gets a WebSearch tool. The llm-anthropic plugin adds WebSearch, WebFetch, CodeExecution, and AnthropicMCP, which looks like this: llm -m claude-sonnet-5 -T 'AnthropicMCP("https://datasette.simonwillison.net/-/mcp")' \ 'how many rows in the blog_blogmark table?' That causes Anthropic to execute MCP calls against my new datasette-mcp plugin as part of a single request/response interaction with their API.

Read full article ↗excerpt · fair-use quotation

Around this claim