Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sarvam": {
"env": {
"SARVAM_API_KEY": "YOUR_API_KEY_HERE"
},
"args": [
"-y",
"sarvam-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server implementation that integrates the Sarvam API, providing comprehensive text processing capabilities for Indian languages.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'sarvam-mcp-server' 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 sarvam-mcp-server 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 ai-ml / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
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.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
MCP Security Weekly
Get CVE alerts and security updates for Sarvam Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server implementation that integrates the Sarvam API, providing comprehensive text processing capabilities for Indian languages.
language-identification
input (string): Text to identify language and scripttext-analytics
text (string): Text to analyzequestions (string[]): Array of questions to answer about the texttranslate-text
input (string): Text to translatesource_language_code (string): Source language codetarget_language_code (string): Target language codespeaker_gender (string, optional): Speaker's gendermode (string, optional): Translation modemodel (string, optional): Translation modelenable_processing (boolean, optional): Enable additional processingoutput_script (string, optional): Target scriptnumerals_format (string, optional): Format for numeralstransliterate-text
input (string): Text to transliteratesource_language_code (string): Source language codetarget_language_code (string): Target language codenumerals_format (string, optional): Format for numeralsspoken_form (boolean, optional): Enable spoken formspoken_form_numerals_language (string, optional): Language for spoken numeralsAdd this to your claude_desktop_config.json:
{
"mcpServers": {
"sarvam": {
"command": "npx",
"args": [
"-y",
"sarvam-mcp-server"
],
"env": {
"SARVAM_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
The package is available on npm as sarvam-mcp-server. Install it using:
npm install sarvam-mcp-server
The server is available as a Docker image at shbhtngpl/sarvam-mcp-server.
docker pull shbhtngpl/sarvam-mcp-server
docker run -i --rm -e SARVAM_API_KEY=your_api_key_here shbhtngpl/sarvam-mcp-server
For Claude Desktop integration, use this configuration in your claude_desktop_config.json:
{
"mcpServers": {
"sarvam": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"SARVAM_API_KEY",
"shbhtngpl/sarvam-mcp-server"
],
"env": {
"SARVAM_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
git clone https://github.com/Shobhit-Nagpal/sarvam-mcp-server.git
cd sarvam-mcp-server
npm install
npm start
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.