MCP ExplorerExplorer

Azure Wiki Search Server

@coder-linpingon 10 months ago
2 MIT
FreeCommunity
AI Systems
This mcp server implements the MCP specification to allow AI agents to search on Azure wiki

Overview

What is Azure Wiki Search Server

The azure-wiki-search-server is an MCP server that implements the MCP specification, enabling AI agents to search for information on Azure wiki.

Use cases

Use cases include assisting developers in finding relevant documentation quickly, enabling AI agents to gather information for decision-making, and enhancing collaborative projects by providing easy access to shared knowledge.

How to use

To use azure-wiki-search-server, first install the necessary prerequisites including VS Code, GitHub Copilot, Python 3.10 or higher, and uv. Then clone the repository, set up the environment, and configure VS Code with the required settings.

Key features

Key features include the ability to search the Edge Wiki for related materials using the ‘search_wiki’ tool and retrieve wiki content by a specified path using the ‘get_wiki_by_path’ tool.

Where to use

azure-wiki-search-server can be utilized in fields such as software development, AI research, and any domain that requires efficient access to documentation and knowledge bases.

Content

Azure Wiki Search Server

This mcp server implements the MCP specification to allow AI agents to search on Azure wiki.

Tools

  • search_wiki

    Search Edge Wiki to find related material for {query}.

  • get_wiki_by_path

    Get wiki content by provided path.

Prerequest

  1. Install the latest VS code.

  2. Install the GitHub Copilot and GitHub Copilot Chat extensions

  3. Install Python 3.10 or higher.

  4. Install uv.
    On Windows

    powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
    

    On Mac|Linux

    curl -LsSf https://astral.sh/uv/install.sh | sh
    
  5. Prepare a Personal Access Token and make sure it has permission to read wiki.

Local Setup

  1. Clone this repo.

    git clone https://github.com/coder-linping/azure-wiki-search-server.git 
    cd azure-wiki-search-server
    
  2. Setup env.
    On Windows

    uv venv
    .venv/Scripts/activate
    

    On Mac | Linux

    uv venv
    source .venv/bin/activate
    
  3. Configuration for VS Code

    For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

    Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

      "mcp": {
        "servers": {
          "edge_wiki": {
            "command": "uv",
            "args": [
                "--directory",
                "<absolute path to your cloned folder>",
                "run",
                "src/edge_wiki.py"
            ],
            "env": {
                "PAT": "Your personal access token",
                "ORG": "Your organization,default is microsoft",
                "PROJECT": "Your project, default is Edge"
            },
          }
        }
      }
    

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers