A collection of Wolfram agent skills
npx claudepluginhub wolframresearch/agenttoolsA full Wolfram Language development environment with code evaluation, documentation search, symbol inspection, static analysis, and test execution.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 129 specialized Claude Code subagents organized into 10 focused categories
No description available.
A Wolfram Language toolkit for integrating with AI agents and LLMs — providing MCP servers, agent skills, and other standard interfaces that give AI systems access to Wolfram's computational capabilities.
"AgentTools" extensionPacletInstall["Wolfram/AgentTools"]
Needs["Wolfram`AgentTools`"]
Install a Wolfram MCP server for Claude Desktop:
InstallMCPServer["ClaudeDesktop"]
(* Out: Success["InstallMCPServer", <|...|>] *)
After restarting Claude Desktop, it will have access to Wolfram knowledge and tools:

To install a specific server type:
InstallMCPServer["ClaudeDesktop", "WolframLanguage"]
To uninstall:
UninstallMCPServer["ClaudeDesktop"] (* Remove all servers *)
UninstallMCPServer["ClaudeDesktop", "Wolfram"] (* Remove specific server *)
AgentTools includes four predefined server configurations, each optimized for different use cases:
| Server | Best For | Tools |
|---|---|---|
| Wolfram (default) | General-purpose use combining computational power with natural language | WolframContext, WolframLanguageEvaluator, WolframAlpha |
| WolframAlpha | Natural language queries without code execution | WolframAlphaContext*, WolframAlpha |
| WolframLanguage | Wolfram Language development and learning | WolframLanguageContext, WolframLanguageEvaluator, ReadNotebook, WriteNotebook, SymbolDefinition, CodeInspector, TestReport |
| WolframPacletDevelopment | Developing and maintaining Wolfram paclets | All WolframLanguage tools plus documentation tools (CreateSymbolDoc, EditSymbolDoc, EditSymbolDocExamples) |
*Requires LLMKit subscription
Install a specific server:
InstallMCPServer["ClaudeDesktop", "WolframLanguage"]
See docs/servers.md for detailed information about each server and guidance on choosing the right one.
AgentTools can be installed into the following MCP client applications:
| Client | Name | Project Support |
|---|---|---|
| Claude Code | "ClaudeCode" | Yes |
| Claude Desktop | "ClaudeDesktop" | No |
| Cline | "Cline" | No |
| Copilot CLI | "CopilotCLI" | No |
| Cursor | "Cursor" | No |
| Gemini CLI | "GeminiCLI" | No |
| Google Antigravity | "Antigravity" | No |
| OpenAI Codex | "Codex" | Yes |
| OpenCode | "OpenCode" | Yes |
| Visual Studio Code | "VisualStudioCode" | Yes |
| Windsurf | "Windsurf" | No |
| Zed | "Zed" | Yes |