Storm MCP Server with Sionic AI serverless RAG

by sionic-ai

40 stars
446 downloads
Not rated
GitHub

Description

# Storm MCP Server with Sionic AI serverless RAG ## Korean (한국어) ### Storm MCP(Model Context Protocol) Server Storm MCP(Model Context Protocol) 서버는 LLM 애플리케이션과 RAG 데이터 소스 및 도구들 간의 원활한 통합을 가능하게 하는 개방형 프로토콜입니다. Anthropic의 [Model Context…

About

# Storm MCP Server with Sionic AI serverless RAG ## Korean (한국어) ### Storm MCP(Model Context Protocol) Server Storm MCP(Model Context Protocol) 서버는 LLM 애플리케이션과 RAG 데이터 소스 및 도구들 간의 원활한 통합을 가능하게 하는 개방형 프로토콜입니다. Anthropic의 [Model Context Protocol](https://modelcontextprotocol.io/introduction)을 구현하여 Claude Desktop에서 Storm…

Details

Author
sionic-ai
GitHub stars
40
Downloads
446
Categories
Developer Tools, Knowledge Base, AI, Cloud Service, Other

Setup

Install Storm MCP Server with Sionic AI serverless RAG in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/sionic-ai/serverless-rag-mcp-server

Follow the installation instructions in the repository README, then restart your MCP client.

Storm MCP Server with Sionic AI serverless RAG

Storm MCP(Model Context Protocol) Server

Storm MCP(Model Context Protocol) 서버는 LLM 애플리케이션과 RAG 데이터 소스 및 도구들 간의 원활한 통합을 가능하게 하는 개방형 프로토콜입니다. Anthropic의Model Context Protocol을 구현하여 Claude Desktop에서 Storm Platform을 바로 이용합니다.

Sionic AI 의Storm Platform를 통합해서 사용하여 나만의 강력한 임베딩 모델과 벡터DB 제품군을 연결하여 사용할 수 있습니다.https://sionicstorm.ai에서 에이전트 단위로 가입하여서 API Token을 얻어서 RAG 솔루션을 바로 만드실 수 있습니다.

API Key는scripts/run.sh에 존재하는export STORM_API_KEY=''에 입력하세요.

- 컨텍스트 공유: LLM과 데이터 소스 간의 상호작용을 위한 표준 프로토콜을 제공합니다.
- 도구 시스템: 도구를 정의하고 호출하는 표준화된 방식을 제공합니다(send_nonstream_chat, list_agents, list_buckets, upload_document_by_file 등).
- 파일 관리: 파일 업로드, 읽기 및 관리를 위한 파일 시스템 작업을 구현합니다.
- API 통합: Storm의 API 엔드포인트와 연결하여 다양한 기능을 제공합니다.

- main.py: MCP 서버를 초기화하고 이벤트 핸들러를 설정합니다.
- core/file_manager.py: 파일 작업을 위한FileSystemManager클래스를 구현합니다.
- core/internal_api.py: Storm의 REST API 엔드포인트와 상호 작용하기 위한 API 클라이언트 함수를 포함합니다.
- tools/tool_definitions.py: MCP 서버에서 사용 가능한 도구를 정의합니다.
- tools/tool_handlers.py: 도구 작업을 위한 핸들러를 구현합니다.
- tools/tool_upload_file.py: 자체 MCP 핸들러가 있는 파일 작업을 위한 별도의 파일 서버를 구현합니다.

MCP는 호스트(LLM 애플리케이션), 클라이언트(프로토콜 구현체), 서버(기능 제공자) 간의 3계층 구조로 설계되었습니다. Storm MCP 서버는 이 중 서버 부분을 구현하여 리소스와 도구를 LLM에 제공합니다.

Claude Desktop환경에서 MCP 서버를 연결하려면, 아래와 같은 설정을 적용해야 합니다.

code ~/Library/Application\ Support/Claude/claude_desktop_config.json
{ "mcpServers": { "storm": { "command": "sh", "args": [ "/Users/sigridjineth/Desktop/work/storm-mcp-server/scripts/run.sh" ] } } }

Storm MCP(Model Context Protocol) Server

Storm MCP(Model Context Protocol) サーバーは、LLMアプリケーションとRAGデータソースおよびツール間のシームレスな統合を可能にするオープンプロトコルです。 AnthropicのModel Context Protocolを実装し、Claude DesktopでStorm Platformを直接利用できます。

Sionic AI のStorm Platformを統合して使用することで、自分だけの強力な埋め込みモデルとベクターDB製品群を接続して利用できます。https://sionicstorm.aiでエージェント単位で登録してAPIトークンを取得し、すぐにRAGソリューションを作成できます。

APIキーはscripts/run.shexport STORM_API_KEY=''に入力してください。

- コンテキスト共有: LLMとデータソース間の相互作用のための標準プロトコルを提供します。
- ツールシステム: ツールを定義し呼び出すための標準化された方法を提供します(send_nonstream_chat、list_agents、list_buckets、upload_document_by_fileなど)。
- ファイル管理: ファイルのアップロード、読み込み、管理のためのファイルシステム操作を実装します。
- API統合: StormのAPIエンドポイントと接続し、様々な機能を提供します。

- main.py: MCPサーバーを初期化し、イベントハンドラーを設定します。
- core/file_manager.py: ファイル操作のためのFileSystemManagerクラスを実装します。
- core/internal_api.py: StormのRESTAPIエンドポイントと相互作用するためのAPIクライアント関数を含みます。
- tools/tool_definitions.py: MCPサーバーで利用可能なツールを定義します。
- tools/tool_handlers.py: ツール操作のためのハンドラーを実装します。
- tools/tool_upload_file.py: 独自のMCPハンドラーを持つファイル操作のための別個のファイルサーバーを実装します。

MCPは、ホスト(LLMアプリケーション)、クライアント(プロトコル実装)、サーバー(機能提供者)間の3層構造で設計されています。Storm MCPサーバーはこのうちサーバー部分を実装し、リソースとツールをLLMに提供します。

Claude Desktop環境でMCPサーバーを接続するには、以下の設定を適用する必要があります。

code ~/Library/Application\ Support/Claude/claude_desktop_config.json
{ "mcpServers": { "storm": { "command": "sh", "args": [ "/Users/sigridjineth/Desktop/work/storm-mcp-server/scripts/run.sh" ] } } }

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

A Retrieval-Augmented Generation (RAG) server for document processing, vector storage, and intelligent Q&A, powered by the Model Context Protocol.

A RAG-based Q&A server using a vector store built from Gemini CLI documentation.

A powerful Model Context Protocol (MCP) server using gemini embedding 3 that transforms any local directory into an ultrafast, visually-aware spatial search engine for AI agents.

Local code analysis MCP server with 25+ tools: semantic search, call graph tracing, dependency analysis, and symbol navigation. Built with Tree-sitter and CozoDB. Supports Go, Python, JS, TS.

A local-first code indexer that enhances LLMs with deep code understanding. It integrates with AI assistants via the Model Context Protocol (MCP) and supports AI-powered semantic search.

A knowledge management tool for code repositories using vector embeddings, powered by a local Ollama service.

A server for managing structured project context using SQLite, with support for vector embeddings for semantic search and Retrieval Augmented Generation (RAG).

An MCP server for interacting with Dappier's Retrieval-Augmented Generation (RAG) models.

MCP of MCPs is a meta-server that merges all your MCP servers into a single smart endpoint. It gives AI agents instant tool discovery, selective schema loading, and massively cheaper execution, so you stop wasting tokens and time. With persistent tool metadata, semantic search, and direct code execution between tools, it turns chaotic multi-server setups into a fast, efficient, hallucination-free workflow. It also automatically analyzes the tools output schemas if not exist and preserves them across sessions for consistent behavior.

A local MCP server implementing Retrieval-Augmented Generation (RAG) with sentence window retrieval and support for multiple file types.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.