supOS MCP Server
英語|中国語
supOS MCP サーバー
この MCP サーバーは、 Model Context Protocol (MCP)プロトコルによって提供されるtypescript-sdkに基づいて開発されており、MCP プロトコルをサポートするすべてのクライアントが使用できます。
トピックツリー構造やトピックの詳細などのクエリなど、一連の supOS オープン API を提供します。
サポートされているAPI
ツール
get-model-topic-treeトピックツリー構造メニューデータのクエリ
入力:
key(文字列): 子ノードのあいまい検索キーワードshowRec(boolean): 表示するレコード数type(文字列): 検索タイプ: 1--テキスト検索、2--タグ検索
戻り値: トピックツリー構造メニューデータ
get-model-topic-detail特定のトピックの詳細を取得する
入力:
topic(文字列): モデルに対応するトピックパス
戻り値: 特定のトピックの詳細
get-topic-realtime-data特定のトピックのリアルタイムデータを取得する
入力:
topic(文字列): モデルに対応するトピックパス
戻り値: 特定のトピックのリアルタイムデータ
get-all-topic-realtime-dataあらゆるトピックのリアルタイムデータを取得して分析する
返されるもの: すべてのトピックのリアルタイムデータ
get-topic-history-data-by-graphqlgraphqlから特定のトピックの履歴データを取得する
入力:
topic(文字列): モデルに対応するトピックパスlimit(数値): レコード数の制限startTime(文字列): ISO 8601形式の開始時刻(例:2025-04-13T00:00:00Z)。指定しない場合は、現在の時刻の1週間前がデフォルトとなります。endTime: ISO 8601形式の終了時刻(例:2025-04-20T23:59:59Z)。指定しない場合は、現在の時刻がデフォルトとなります。
戻り値: 特定のトピックの履歴データ
ドキュメントに従って使い始めましょう
Related MCP server: supabase-mcp
はじめる
システム要件
Node.js
クライアントのインストール
現在、 Claude for Desktopようなデスクトップアプリケーションや、IDEプラグイン( VSCode用のClineプラグインなど)など、MCPプロトコルをサポートするクライアントは数多くあります。サポートされているクライアントの詳細については、 Model Context Protocol Clientをご覧ください。
ここではClaude for Desktop例として使用します。
Claude for Desktopをダウンロードしてください。
Claude for Desktopに必要な MCP サーバーを構成します。テキスト エディターで
Claude for Desktop構成を開きます:~/Library/Application Support/Claude/claude_desktop_config.json。
この構成ファイルの場所は
File -> Setting -> DeveloperのEdit Configをクリックして見つけることもできます。


構成ファイルを開いたら、
claude_desktop_config.jsonに次の内容を追加し、アプリケーションを再起動します。
注意: 変更を有効にするには、この構成ファイルを変更するたびにアプリケーションを再起動する必要があります。{ "mcpServers": { "supos": { "command": "npx", "args": [ "-y", "mcp-server-supos" ], "env": { "SUPOS_API_KEY": "<API_KEY>", "SUPOS_API_URL": "<API_URL>", "SUPOS_MQTT_URL": "<MQTT_URL>" } } } }
API_URLsupOS Community Editionのアクセス可能なアドレスです。API_KEYAPI_KEY、コミュニティエディションにログインし、DataModeling -> View specific topic details -> Data Operation -> Fetchに移動して、対応する ApiKey をコピーすることで確認できます。MQTT_URLMQTT_URL``UNS -> MqttBroker -> Listenersにアクセスして、サブスクライブ可能なアドレスを表示することで確認できます。
注: 上記のMCPサーバーの構成では、 npxを使用してmcp-server-supos npmパッケージをプルし、ローカルで実行してクライアントにサービスを提供しています。ただし、 Windowsシステムではnpxが環境変数env設定の読み取りに問題が発生する可能性があるため、以下の解決策を採用できます。
ローカルでサービスを実行する
次の 2 つの方法のいずれかを選択します。
mcp-server-suposローカルにインストールし、ノード経由で実行する
インストール
npm install mcp-server-supos -gインストールされたパッケージのパスを見つけます。例:
"C://Users//<USER_NAME>//AppData//Roaming//npm//node_modules//mcp-server-supos//dist//index.js"claude_desktop_config.jsonの設定を変更し、アプリケーションを再起動します。
{
"mcpServers": {
"supos": {
"command": "node",
"args": [
"C://Users//<USER_NAME>//AppData//Roaming//npm//node_modules//mcp-server-supos//dist//index.js"
],
"env": {
"SUPOS_API_KEY": "<API_KEY>",
"SUPOS_API_URL": "<API_URL>",
"SUPOS_MQTT_URL": "<MQTT_URL>"
}
}
}
}リポジトリのソースコードをダウンロードしてローカルにコンパイルする
リポジトリをクローンします。
git clone https://github.com/FREEZONEX/mcp-server-supos.git依存関係をインストールする
npm ci建てる
npm run buildclaude_desktop_config.jsonの設定を変更し、アプリケーションを再起動します。
{
"mcpServers": {
"supos": {
"command": "node",
"args": [
"<local project path>//dist//index.js"
],
"env": {
"SUPOS_API_KEY": "<API_KEY>",
"SUPOS_API_URL": "<API_URL>",
"SUPOS_MQTT_URL": "<MQTT_URL>"
}
}
}
}結論
このサービスの使い方に関するチュートリアルは以上です。設定が完了すると、以下のパネルに対応するサービスとツールが表示されます。


Smithery経由でインストール
Smithery経由で Claude Desktop 用の supOS MCP Server を自動的にインストールするには:
npx -y @smithery/cli install @FREEZONEX/mcp-server-supos --client claude最終ノート
supOS Community Editionは、 CopilotKit作者によってオープンソース化されたopen-mcp-clientを統合し、tsバージョンagentをサポートするmcp-server-suposサービスを内蔵しています。ソースコードはsupOS-CE-McpClientからアクセスできます。
ライセンス
このプロジェクトは、Apache License 2.0 に基づいてライセンスされています。詳細については、 LICENSEファイルを参照してください。
This server cannot be installed
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
- AlicenseBqualityDmaintenanceA Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API. This server allows AI models and other clients to manage Supabase projects and organizations through a standardized interface.83051MIT
- AlicenseNot gradedqualityNot gradedmaintenanceAn MCP server that provides tools for interacting with Supabase databases, storage, and edge functions.45MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that exposes HTTP methods defined in an OpenAPI specification as tools, enabling interaction with APIs via the Model Context Protocol.8MIT
- AlicenseBqualityNot gradedmaintenanceA lightweight MCP server that enables integration with Microsoft SharePoint, allowing clients to interact with documents and folders through the Model Context Protocol.965
Related MCP Connectors
An MCP server giving access to Grafana dashboards, data and more.
MCP server for interacting with the Supabase platform
2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
Appeared in Searches
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/FREEZONEX/mcp-server-supos'
If you have feedback or need assistance with the MCP directory API, please join our Discord server