SoulverCore MCP Server
A comprehensive MCP server that integrates SoulverCore with Claude Desktop, enabling natural language mathematical calculations, unit conversions, date arithmetic, and financial computations.
README
š§® SoulverCore MCP Server
Natural Language Mathematical Expression Evaluation for Claude Desktop
A comprehensive Model Context Protocol (MCP) server that integrates SoulverCore with Claude Desktop, enabling powerful natural language mathematical calculations, unit conversions, date arithmetic, and financial computations.
š¤ What is Soulver?
Soulver is a revolutionary calculator that understands natural language mathematical expressions. Unlike traditional calculators that require precise syntax, Soulver lets you write math the way you think about it:
- Natural Language: Write
$25k over 10 years at 7.5%instead of complex formulas - Context Aware: Understands units, currencies, dates, and percentages automatically
- Human Readable: Results are formatted in a way that makes sense to humans
- Powerful Engine: Handles complex financial, scientific, and everyday calculations
SoulverCore is the command-line version that powers this MCP server, bringing Soulver's natural language math capabilities to Claude Desktop.
š§ Why This Helps Claude with Math
This integration significantly enhances Claude's mathematical capabilities in several key ways:
šÆ Precision & Reliability
- Eliminates Calculation Errors: Claude's built-in math can sometimes produce approximations or errors, especially with complex financial calculations. SoulverCore provides precise, reliable results.
- Consistent Results: Every calculation is processed by the same proven mathematical engine, ensuring consistency across sessions.
š Real-World Context
- Natural Language Processing: Claude can now handle math requests exactly as users write them, without needing to translate to programming syntax.
- Unit Intelligence: Automatic handling of currencies, measurements, dates, and percentages without manual conversion.
- Financial Expertise: Specialized functions for compound interest, loans, tips, and business calculations that Claude can now access reliably.
š Enhanced Learning
- Syntax Guidance: The MCP Resources provide Claude with comprehensive documentation about mathematical expression patterns.
- Error Resolution: Built-in troubleshooting guides help Claude assist users when calculations don't work as expected.
- Example Library: Extensive examples help Claude suggest the right syntax for complex calculations.
š Interactive Workflows
- Guided Calculations: MCP Prompts provide structured templates for common calculations, making it easier for Claude to help users step through complex problems.
- Progressive Assistance: Claude can start with simple calculations and build up to more complex scenarios using the provided examples.
š” Why This Matters
Before this integration, Claude might struggle with:
- Complex percentage calculations (
$150 is 25% on what) - Financial projections (
$25k over 10 years at 7.5%) - Unit conversions with context (
65 kg in pounds) - Date arithmetic (
January 30 2020 + 3 months 2 weeks 5 days)
Now Claude can handle these naturally and accurately, making it a more reliable mathematical assistant for real-world problems.
⨠Features
š ļø MCP Tools
calculate- Evaluate natural language mathematical expressionssoulver_status- Check SoulverCore CLI installation and version
š¬ MCP Prompts
compound_interest- Calculate compound interest with guided inputstip_calculator- Calculate total cost including tipsweight_conversion- Convert between weight unitsdate_addition- Add time periods to datespercentage_calculation- Various percentage calculations
š MCP Resources
- Syntax Guide - Complete SoulverCore syntax reference
- Quick Reference - Common syntax patterns
- Financial Examples - Real-world financial calculations
- Conversion Examples - Unit conversion examples
- Date Examples - Date arithmetic examples
- Troubleshooting - Common errors and solutions
š Quick Start
Prerequisites
- Node.js 18+
- SoulverCore CLI - Install with:
brew install soulver-cli - Claude Desktop with MCP support
Installation
-
Clone the repository
git clone https://github.com/amotivv/soulver-mcp-server.git cd soulver-mcp-server -
Install dependencies
npm install -
Build the project
npm run build -
Test the server
npm test
Claude Desktop Configuration
Add the server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"soulver": {
"command": "node",
"args": ["/absolute/path/to/soulver-mcp-server/dist/index.js"]
}
}
}
Important: Use the absolute path to your project directory.
š Usage Examples
Basic Calculations
Calculate: $25k over 10 years at 7.5%
ā $51,525.79
Calculate: 65 kg in pounds
ā 143.3 lb
Calculate: $25/hour * 14 hours of work
ā $350.00
Financial Calculations
Calculate: $150 is 25% on what
ā $600.00
Calculate: $10 for lunch + 15% tip
ā $11.50
Calculate: 40 as % of 90
ā 44.44%
Date Arithmetic
Calculate: January 30 2020 + 3 months 2 weeks 5 days
ā May 19, 2020
Calculate: 9:35am in New York to Japan
ā 10:35 pm
Unit Conversions
Calculate: 32 fahrenheit in celsius
ā 0°C
Calculate: 10 miles in km
ā 16.09 km
šļø Architecture
graph TB
A[Claude Desktop] -->|MCP Protocol| B[SoulverCore MCP Server]
B -->|CLI Execution| C[SoulverCore CLI]
B -->|Prompts| D[Interactive Templates]
B -->|Resources| E[Documentation]
B -->|Tools| F[Mathematical Engine]
D --> G[Compound Interest]
D --> H[Tip Calculator]
D --> I[Unit Conversion]
E --> J[Syntax Guide]
E --> K[Examples]
E --> L[Troubleshooting]
F --> M[Expression Parser]
F --> N[Result Formatter]
š§ Development
Project Structure
soulver-mcp-server/
āāā src/
ā āāā index.ts # Main MCP server
ā āāā soulver-cli.ts # CLI wrapper
ā āāā test.ts # Test suite
ā āāā prompts/ # MCP prompt definitions
ā ā āāā financial.ts
ā ā āāā conversions.ts
ā ā āāā dates.ts
ā āāā resources/ # MCP resource definitions
ā āāā syntax-guide.ts
ā āāā examples.ts
āāā dist/ # Compiled JavaScript
āāā memory-bank/ # Project documentation
āāā package.json
āāā tsconfig.json
āāā README.md
Available Scripts
npm run build # Compile TypeScript
npm test # Run test suite
npm run dev # Development mode (if configured)
Testing
The project includes a comprehensive test suite that validates:
- ā SoulverCore CLI availability
- ā Mathematical expression evaluation
- ā Error handling and edge cases
- ā MCP protocol compliance
npm test
š Supported Expression Types
Financial Calculations
- Compound Interest:
$25k over 10 years at 7.5% - Hourly Wages:
$25/hour * 14 hours of work - Tips:
$10 for lunch + 15% tip - Percentages:
40 as % of 90,$150 is 25% on what
Unit Conversions
- Weight:
65 kg in pounds,150 lbs in kg - Distance:
10 miles in km,5 km in miles - Temperature:
32 fahrenheit in celsius,100 celsius in fahrenheit
Date Arithmetic
- Addition:
January 30 2020 + 3 months 2 weeks 5 days - Differences:
December 31 2024 - January 1 2024 - Time Zones:
9:35am in New York to Japan
Basic Math
- Arithmetic:
100 + 200,50% of 200 - Currency:
$100 + $50,ā¬200 - ā¬75
š”ļø Security & Error Handling
- Input Sanitization: All expressions are validated before execution
- Process Timeout: CLI calls timeout after 10 seconds
- Error Recovery: Graceful handling of invalid expressions
- Resource Management: Proper cleanup of child processes
- Type Safety: Full TypeScript implementation with strict mode
š¤ Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
š License
This project is licensed under the MIT License - see the LICENSE file for details.
š Acknowledgments
- SoulverCore - The powerful natural language math engine
- Model Context Protocol - The protocol enabling AI tool integration
- Claude Desktop - The AI assistant platform
š Support
- Issues: GitHub Issues
- Documentation: MCP Documentation
- SoulverCore: Official Documentation
<div align="center">
Made with ā¤ļø for the Claude Desktop community
ā Star this repo ⢠š Report Bug ⢠š” Request Feature
</div>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.