loog
Claudeデスクトップ&MCP で Brave search | 株式会社バンコム

Claudeデスクトップ&MCP で Brave search

November 28, 2024

2024-11-28 時点では、Windows版の Claude アプリでは、チュートリアルの通りの設定をしても、node との連携が正常に行えない状態です。

対処する

Issue comment に対処法が書かれています。

As a workaround, you should be able to npm install -g the MCP servers you care about, and use node to invoke them directly (instead of npx).

ということなので、手動で nmp install -g して、インストールし、%APPDATA%\Claude\claude_desktop_config.json に、使用するコマンド(path)と引数を定義し直すことで、正常に使用できます。

私の環境では、nvm で Node の Version 管理をしている関係で、以下のようなPathになっています。

{
  "mcpServers": {
    "sqlite": {
      "command": "uvx",
      "args": [
        "mcp-server-sqlite",
        "--db-path",
        "C:\\Users\\kiyo\\Claude\\test.db"
      ]
    },
    "brave-search": {
      "command": "node",
      "args": [
        "C:\\Users\\kiyo\\AppData\\Roaming\\nvm\\v23.3.0\\node_modules\\@modelcontextprotocol\\server-brave-search\\dist\\index.js"
      ],
      "env": {
        "BRAVE_API_KEY": "API_KEY"
      }
    }
  }
}

検索させてみる

brave_web_search で、今日のAIニュースを5件だして。 と、依頼してみました。

最新のAIニュースを検索してみましょう。View Result from brave_web_search from brave-search (local){
  `count`: 5,
  `query`: `AI news latest artificial intelligence 2024`
}Title: AI News - Artificial Intelligence News
Description: <strong>The intelligence displayed by generative AI chatbots like OpenAI&#x27;s ChatGPT</strong> has captured the imagination of individuals and corporations, and artificial intelligence has suddenly become the most exciting area of technology innovation.
URL: https://www.artificialintelligence-news.com/

Title: What’s next for AI in 2024 | MIT Technology Review
Description: To do this, AI giants Google and ... tools that allow anyone to become a generative-AI app developer. In 2024, <strong>generative AI might actually become useful for the regular, non-tech person</strong>, and we are going to see more people tinkering with a million little AI ...
URL: https://www.technologyreview.com/2024/01/04/1086046/whats-next-for-ai-in-2024/

Title: AI News & Artificial Intelligence | TechCrunch
Description: Read the <strong>latest</strong> <strong>on</strong> <strong>artificial</strong> <strong>intelligence</strong> and machine learning tech, the companies that are building them, and the ethical issues <strong>AI</strong> raises today.
URL: https://techcrunch.com/category/artificial-intelligence/

Title: Reuters AI News | Latest Headlines and Developments | Reuters
Description: The artificial intelligence chipmaker ... demand still booming but slowing sales growth worries investors · <strong>A piece of equipment with an Nvidia logo is displayed at COMPUTEX in Taipei, Taiwan June 4, 2024</strong>......
URL: https://www.reuters.com/technology/artificial-intelligence/

Title: Latest AI News: Daily Updated Artificial Intelligence Insights (November 24, 2024)
Description: Daily updated <strong>artificial</strong> <strong>intelligence</strong> <strong>news</strong> and insights. Stay ahead with our curated <strong>AI</strong> <strong>news</strong> coverage.
URL: https://opentools.ai/news最新のAIニュースをまとめさせていただきます:

2024年のAI動向について、MITテクノロジーレビューが興味深い予測を発表しています。特に注目すべき点は、一般ユーザーにとって生成AIがより実用的になることが予想されている点です。AIアプリ開発のための新しいツールも増えていくとされています。
チップメーカーNVIDIAについて、AI需要は依然として強いものの、売上成長の減速に対する投資家の懸念が報じられています。
生成AI分野では、OpenAIのChatGPTに代表されるチャットボットの知能が、個人や企業の注目を集め続けており、AIは現在最も活況な技術革新分野となっています。
AIの倫理的な問題に関する議論も活発化しており、技術の発展とともに、その社会的影響についての検討も重要視されています。
AI開発ツールの民主化が進んでおり、より多くの人々がAIアプリケーションの開発に関われるようになってきています。

なお、私の知識は2024年4月までのものであり、それ以降の具体的な出来事については確実性を持って言及できないことをご了承ください。最新の正確な情報については、各ニュースソースで直接ご確認いただくことをお勧めします。何か特定の分野について、より詳しく知りたい点はありますか?

素晴らしい。

Langchain で実現していたことが、Claude オフィシャルの機能で実現できた。