Storm MCP (Model Context Protocol) Server is an open protocol that enables seamless integration between LLM applications and RAG data sources and tools. It implements Anthropic's Model Context Protocol, allowing direct use of the Storm Platform on Claude Desktop.
To use the Storm MCP Server, you need to register on the Storm Platform to obtain an API token. Then, configure the MCP server settings in your Claude Desktop environment by editing the configuration file and adding the necessary JSON settings.
Use these steps to connect Storm MCP Server with Sionic AI serverless RAG in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"serverless-rag-mcp-server-sionic-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-serverless-rag-mcp-server-sionic-ai"
]
}
}
}Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"serverless-rag-mcp-server-sionic-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-serverless-rag-mcp-server-sionic-ai"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"serverless-rag-mcp-server-sionic-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-serverless-rag-mcp-server-sionic-ai"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
Yes, it is designed to integrate with various LLM applications that support the Model Context Protocol.
The platform offers free access for users to create RAG solutions.
You can obtain the API key by registering on the Storm Platform and following the instructions provided.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":2594,"uuid":"8dadc1d2-6990-499e-b299-9a2cfdc9fc58","name":"serverless-rag-mcp-server","title":"Storm MCP Server with Sionic AI serverless RAG","description":"","avatar_url":"https://avatars.githubusercontent.com/u/134251674?v=4","created_at":"2025-03-13T09:01:33.206Z","updated_at":"2025-03-22T12:31:54.112Z","status":"created","author_name":"sionic-ai","author_avatar_url":"https://avatars.githubusercontent.com/u/134251674?v=4","tags":"sionic-ai,serverless,rag,mcp,llm,integration","category":"research-and-data","is_featured":false,"sort":1,"url":"https://github.com/sionic-ai/serverless-rag-mcp-server","target":"_self","content":"$29","summary":"$2a","img_url":"https://github.com/sionic-ai/serverless-rag-mcp-server/raw/master/scripts/img.png","type":null,"metadata":"{\"star\":\"20\",\"license\":\"\",\"language\":\"Python\",\"is_official\":false,\"latest_commit_time\":\"2025-03-11 12:34:16\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
.vscode/mcp.json
{
"servers": {
"serverless-rag-mcp-server-sionic-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-serverless-rag-mcp-server-sionic-ai"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"serverless-rag-mcp-server-sionic-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-serverless-rag-mcp-server-sionic-ai"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"serverless-rag-mcp-server-sionic-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-serverless-rag-mcp-server-sionic-ai"
]
}
}
}