Savanto MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Savanto MCP Servershow me my top failing chats this week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@savantoai/mcp-server
A local Model Context Protocol server that exposes your Savanto AI workspace to Claude, ChatGPT, Cursor, and any other MCP-compatible client — so you can configure, populate, and operate your store's AI assistant by talking to your own AI, instead of clicking through a dashboard.
What it does
Once configured, your agent gains a curated set of tools that mirror the Savanto REST API, spanning the full configure → observe → refine loop:
Category | Representative tools | Scope |
Workspaces |
|
|
Configuration |
|
|
Content |
|
|
Taxonomies |
|
|
Prompts |
|
|
Webhooks |
|
|
Crawl |
|
|
Search |
|
|
Analytics |
|
|
Threads |
|
|
Chat |
|
|
Diagnostics |
| (none) / |
Two things keep the surface safe and legible to clients:
Scope-gated at startup — the server probes
/tenant/whoamiand only registers tools your key can actually use. An agent is never shown a tool it would get a 403 for, and a publishable widget key sees almost nothing.Annotated — every tool carries MCP hints (
readOnlyHint,destructiveHint,idempotentHint) so clients can auto-approve safe reads and flag destructive writes; deletes additionally require an explicitconfirm: true.
The server also exposes Skills (MCP prompts) — step-by-step playbooks for common multi-tool workflows:
onboard-store-end-to-end– create a workspace, ingest content, configure behaviour + branding, smoke-testonboard-wordpress/onboard-shopify– platform-specific onboarding walkthroughsconfigure-chat– tune persona, special instructions, and handoff rulesconfigure-custom-domain– wire a custom capability (order tracking, account lookup) to MCP servers / REST APIsaudit-and-improve– the observe→refine loop: find failing chats / zero-result searches / negative feedback and fix themdebug-empty-search– diagnose why a product search returns no hitsmigrate-from-competitor– bulk-import from another chat vendor's export
Related MCP server: E-Commerce MCP Server
Requirements
Node.js 20 or later
A secret Savanto API key (starts with
if_sk_…). Create one in the API Keys page of your dashboard.Publishable keys (
if_pk_…) are client-side and cannot provision workspaces — the server will refuse to start with one.
Quick start
No global install needed — run it with npx:
export SAVANTO_API_KEY=if_sk_your_key_here
npx -y @savantoai/mcp-serverPoint to a non-production cloud (staging, local dev):
export SAVANTO_API_URL=http://localhost:3001Remote server (preview)
In addition to the local stdio server above, the same tool surface can run as a
hosted HTTP server so clients connect to a URL instead of spawning npx —
no local Node, no per-machine config. This is the path toward one-click
"Connect to Claude/ChatGPT" (OAuth) onboarding; today it accepts your secret key
as a Bearer token.
# Each client authenticates per-request — there is NO server-wide key.
SAVANTO_API_URL=https://api.savanto.ai PORT=8080 npx -y -p @savantoai/mcp-server savanto-mcp-httpThe server mounts the MCP endpoint at /mcp and a liveness probe at /healthz.
Clients send their key as Authorization: Bearer if_sk_…; the tool surface is
scope-gated to that key's tenant, exactly as in the stdio server. Point an MCP
client that supports remote (Streamable HTTP) servers at
https://your-host/mcp with that bearer token.
Auth is currently the raw secret key. A future release replaces it with OAuth-issued, tenant-scoped tokens so customers can connect with zero key handling — the transport and tool layer are unchanged by that swap.
Client configuration
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"savanto": {
"command": "npx",
"args": ["-y", "@savantoai/mcp-server"],
"env": {
"SAVANTO_API_KEY": "if_sk_your_key_here"
}
}
}
}Restart Claude Desktop. You should see a hammer/tool icon in the message bar; the Savanto tools are listed there.
Cursor
In Cursor settings → Features → Model Context Protocol → Add new MCP server:
{
"savanto": {
"command": "npx",
"args": ["-y", "@savantoai/mcp-server"],
"env": { "SAVANTO_API_KEY": "if_sk_your_key_here" }
}
}Cline / Roo / other VS Code agents
Add to the extension's MCP config (usually a JSON file under ~/.cline or similar):
{
"mcpServers": {
"savanto": {
"command": "npx",
"args": ["-y", "@savantoai/mcp-server"],
"env": { "SAVANTO_API_KEY": "if_sk_your_key_here" }
}
}
}OpenAI Agents / Responses API
from openai import OpenAI
from mcp import StdioServerParameters
server = StdioServerParameters(
command="npx",
args=["-y", "@savantoai/mcp-server"],
env={"SAVANTO_API_KEY": "if_sk_your_key_here"},
)Local MCP Inspector (for debugging)
npx @modelcontextprotocol/inspector npx @savantoai/mcp-serverThe Inspector gives you a web UI to list tools, call them directly, and watch request/response payloads — great for confirming your key is wired correctly before handing the server to an agent.
Example prompts
Once the server is registered in your MCP client, try:
"Set up a new Savanto workspace for
acme-store, crawlhttps://acme.test, give it an outdoor-adventure tone, and brand the widget around#0a7d2c." (end-to-end onboarding)
"Look at
acme-store's last 30 days — what are visitors searching for that returns nothing, and which conversations went unresolved? Then add content to fix the top few." (the observe→refine loop)
"Add an order-tracking capability to
acme-storebacked by our MCP server athttps://mcp.acme.test/orders, validate it, and test it before enabling." (custom domain)
"Why did this conversation get a thumbs-down?" — pull
list_feedback, read the thread, and propose a fix.
The agent picks the right tools automatically (and clients can auto-approve the read-only ones). You can also invoke a Skill explicitly — e.g. in Claude Desktop, /onboard-store-end-to-end or /audit-and-improve kicks off that full playbook.
Environment variables
Variable | Default | Purpose |
| (required) | Your secret API key ( |
|
| Override for staging / local dev. |
Security
Always use separate API keys per agent / machine — so you can revoke one without affecting the others. The API Keys page tracks the last-used timestamp of each key.
Keys are passed via environment variables, never logged. The server prints a one-line identity banner on startup (to stderr) showing the tenant id and scope list — no secrets.
The server runs over stdio and never opens a network port. It only speaks to the Savanto API host you point it at.
delete_workspacerequires an explicitconfirm: trueparameter in the tool call — a safety gate against hallucinated destructive operations.
Local development
From the repo root:
npm install
npm run build --workspace=@savantoai/mcp-server
SAVANTO_API_KEY=if_sk_… SAVANTO_API_URL=http://localhost:3001 node sdks/mcp/dist/stdio.jsRun the tests:
npm run test --workspace=@savantoai/mcp-serverLicense
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceExposes SAP AI Core APIs as MCP tools, enabling AI assistants to manage AI Core lifecycle and administration through natural language.Last updated5MIT
- Flicense-qualityDmaintenanceEnables AI assistants to manage products, shopping carts, and orders in an online store through a well-defined MCP API.Last updated

dooor-os-mcpofficial
Flicense-qualityBmaintenanceExposes Dooor OS workspace capabilities to MCP-compatible AI clients, enabling natural language querying of data sources, app and deployment inspection, agent and database management, and governance trace reading.Last updated- Alicense-qualityBmaintenanceExposes WebVoice REST API tools to MCP clients for voice, chat, translation, and image generation via natural language.Last updatedMIT
Related MCP Connectors
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Connect e-commerce and marketing data to AI assistants via MCP.
An AI concierge that turns static forms into adaptive AI conversations. From any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SavantoAI/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server