Skip to main content
Glama

ウィズダムフォージ

鍛冶屋のバッジ

経験、洞察、ベストプラクティスから知恵を育む強力なナレッジマネジメントシステム。Qdrantベクターデータベースを搭載し、効率的なナレッジの保存と検索を実現します。

特徴

  • インテリジェントな知識管理と検索

  • 複数の知識タイプ(ベストプラクティス、教訓、洞察、経験)のサポート

  • 環境変数によるデータベース選択の設定

  • Qdrantの組み込みFastEmbedを使用して、効率的な埋め込みを生成します。

  • ドメイン知識の保存と検索

  • Smithery.aiプラットフォームにデプロイ可能

Related MCP server: Oracle MCP

前提条件

  • Node.js 20.x 以降 (LTS 推奨)

  • npm 10.x以降

  • Qdrant または Chroma ベクトルデータベース

インストール

  1. リポジトリをクローンします。

git clone https://github.com/hadv/wisdomforge
cd wisdomforge
  1. 依存関係をインストールします:

npm install
  1. .env.exampleテンプレートに基づいて、ルート ディレクトリに.envファイルを作成します。

cp .env.example .env
  1. .envファイルで環境変数を設定します。

必要な環境変数

データベース構成

  • DATABASE_TYPE : ベクターデータベースを選択します( qdrantまたはchroma

  • COLLECTION_NAME : ベクターコレクションの名前

  • QDRANT_URL : QdrantインスタンスのURL(Qdrantを使用する場合は必須)

  • QDRANT_API_KEY : Qdrant の API キー (Qdrant を使用する場合は必須)

  • CHROMA_URL : ChromaインスタンスのURL(Chromaを使用する場合は必須)

サーバー構成

  • HTTP_SERVER : HTTPサーバーモードを有効にするにはtrueに設定します

  • PORT : ローカル開発専用のポート番号(デフォルト:3000)。Smitheryクラウドデプロイメントでは使用されません。

Qdrant の.env構成の例:

DATABASE_TYPE=qdrant
COLLECTION_NAME=wisdom_collection
QDRANT_URL=https://your-qdrant-instance.example.com:6333
QDRANT_API_KEY=your_api_key
HTTP_SERVER=true
PORT=3000  # Only needed for local development
  1. プロジェクトをビルドします。

npm run build

AI IDE統合

カーソルAI IDE

この設定を~/.cursor/mcp.jsonまたは.cursor/mcp.jsonファイルに追加します。

{
  "mcpServers": {
    "wisdomforge": {
      "command": "npx",
      "args": [
        "-y",
        "@smithery/cli@latest",
        "run",
        "@hadv/wisdomforge",
        "--key",
        "YOUR_API_KEY",
        "--config",
        "{\"database\":{\"type\":\"qdrant\",\"collectionName\":\"YOUR_COLLECTION_NAME\",\"url\":\"YOUR_QDRANT_URL\",\"apiKey\":\"YOUR_QDRANT_API_KEY\"}}",
        "--transport",
        "ws"
      ]
    }
  }
}

構成内の次のプレースホルダーを置き換えます。

  • YOUR_API_KEY : Smithery APIキー

  • YOUR_COLLECTION_NAME : Qdrantコレクション名

  • YOUR_QDRANT_URL : QdrantインスタンスのURL

  • YOUR_QDRANT_API_KEY : Qdrant APIキー

注: Node.js がインストールされ、PATH にnpx設定されていることを確認してください。nvm を使用している場合は、Cursor を起動する前にnvm use --ltsを実行して、正しい Node.js バージョンを使用していることを確認してください。

クロードデスクトップ

Claude の設定に次の構成を追加します。

{
  "processes": {
    "knowledge_server": {
      "command": "/path/to/your/project/run-mcp.sh",
      "args": []
    }
  },
  "tools": [
    {
      "name": "store_knowledge",
      "description": "Store domain-specific knowledge in a vector database",
      "provider": "process",
      "process": "knowledge_server"
    },
    {
      "name": "retrieve_knowledge_context",
      "description": "Retrieve relevant domain knowledge from a vector database",
      "provider": "process",
      "process": "knowledge_server"
    }
  ]
}
A
license - permissive license
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables storing and retrieving information using semantic search with Qdrant vector database. Acts as a memory layer for LLMs to persistently store and semantically search through information and metadata.
    Apache 2.0
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables semantic search and knowledge management for storing and querying principles, patterns, and learnings using hybrid keyword and vector search.
    1
  • F
    license
    A
    quality
    Not graded
    maintenance
    A local-first knowledge base server that enables AI clients to store, retrieve, and manage documents using semantic search. Provides privacy-focused, offline-capable memory for AI assistants with tools for ingesting, querying, updating, and deleting knowledge.
    7
    16

View all related MCP servers

Related MCP Connectors

  • Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.

  • Universal memory for AI agents and tools. Save, organize and search context anywhere.

  • Shared knowledge base for AI agents. Semantic search across agents, no setup required — just a URL.

View all MCP Connectors

Latest Blog Posts

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/hadv/wisdomforge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server