MCP server exposing TrueCalc spreadsheet formula evaluation as tools for AI assistants.
MCPpedia last refreshed this data
io.github.truecalc/truecalc-mcp is an MCP server that MCP server exposing TrueCalc spreadsheet formula evaluation as tools for AI assistants. Its tool list has not been published yet over sse, requires no API key, and scores 89/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-truecalc-truecalc-mcp": {
"args": [
"-y",
"@truecalc/core"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
WebAssembly-powered spreadsheet formula engine for JavaScript/TypeScript.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@truecalc/core' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @truecalc/core against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / ai-ml
MCP client bridge: connects to MCP servers and registers their tools on ctx.tools
Manage Supabase projects — databases, auth, storage, and edge functions
The official MCP server implementation for the Perplexity API Platform
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP Security Weekly
Get CVE alerts and security updates for io.github.truecalc/truecalc-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
WebAssembly-powered spreadsheet formula engine for JavaScript/TypeScript.
A comprehensive library of spreadsheet functions (see the live count above). Runs in Node.js, Bun, Deno, and the browser — no server needed. Ground-truth conformance against real Google Sheets. The same engine is also available as a Rust crate and as an MCP server for AI assistants.
const { evaluate } = require('@truecalc/core');
evaluate('SUM(A1, B1)', { A1: 100, B1: 200 })
// => { type: 'number', value: 300 }
npm install @truecalc/core
Works out of the box — no bundler configuration needed.
const { evaluate, validate, list_functions } = require('@truecalc/core');
const result = evaluate('SUM(A1, B1)', { A1: 100, B1: 200 });
// => { type: 'number', value: 300 }
Install the wasm plugin first:
npm install -D vite-plugin-wasm
Add it to vite.config.js:
import wasm from 'vite-plugin-wasm';
export default {
plugins: [wasm()],
};
Then import and use normally:
import { evaluate } from '@truecalc/core';
const result = evaluate('IF(A1 > 0, "yes", "no")', { A1: 1 });
// => { type: 'text', value: 'yes' }
webpack 5 supports WebAssembly natively. Enable the experiment in webpack.config.js:
module.exports = {
experiments: {
asyncWebAssembly: true,
},
};
evaluate(formula, variables)Evaluates a formula with the given variable bindings.
evaluate('SUM(A1, B1)', { A1: 100, B1: 200 })
// => { type: 'number', value: 300 }
evaluate('CONCAT("Hello, ", name)', { name: 'world' })
// => { type: 'text', value: 'Hello, world' }
Return value shape:
type | Shape |
|---|---|
number | { type: 'number', value: 6 } |
text | { type: 'text', value: 'yes' } |
boolean | { type: 'boolean', value: true } |
error | { type: 'error', error: '#NAME?' } |
empty | { type: 'empty', value: null } |
validate(formula)Checks whether a formula is syntactically valid without evaluating it.
validate('SUM(A1, B1)') // => { valid: true }
validate('SUM(A1,') // => { valid: false, error: '...' }
list_functions()Returns metadata for all built-in functions.
const fns = list_functions();