Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
WolframAlpha LLM MCP Server
Claim
by
Garoth
GitHub
Search
Research & Data
TypeScript
25
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
wolframalpha-llm-mcp
assets
src
Dockerfile
.env.example
.gitignore
jest.config.js
jest.setup.js
package.json
package-lock.json
README.md
SMITHERY.md
smithery.yaml
tsconfig.json
{ "name": "wolframalpha-mcp-server", "version": "1.0.0", "description": "Uses WolframAlpha to answer math and other queries", "private": true, "type": "module", "bin": { "wolframalpha-mcp-server": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/services/__tests__/wolfram-llm.test.ts", "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch", "test:name": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "dotenv": "^16.4.7", "axios": "^1.7.9" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.11.24", "jest": "^29.7.0", "ts-jest": "^29.2.5", "typescript": "^5.3.3" } }