trackmcp
Back to directory
coder-linping

azure-wiki-search-server

View on GitHub

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

4 stars PythonAI & Machine Learning Updated Jul 14, 2025

Documentation

MseeP.ai Security Assessment Badge

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

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

On Mac|Linux

code
curl -LsSf https://astral.sh/uv/install.sh | sh

Local Setup

1. Clone this repo.

code
git clone https://github.com/coder-linping/azure-wiki-search-server.git 
    cd azure-wiki-search-server

2. Setup env.

On Windows

code
uv venv
    .venv/Scripts/activate

On Mac | Linux

code
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.

code
"mcp": {
        "servers": {
          "edge_wiki": {
            "command": "uv",
            "args": [
                "--directory",
                "",
                "run",
                "src/edge_wiki.py"
            ],
            "env": {
                "ORG": "Your organization,default is microsoft",
                "PROJECT": "Your project, default is Edge"
            },
          }
        }
      }

Frequently asked questions

What is azure-wiki-search-server?

azure-wiki-search-server is This mcp server implements the MCP specification to allow AI agents to search on Azure wiki

How do I install azure-wiki-search-server?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is azure-wiki-search-server open source?

Yes — it is hosted on GitHub at https://github.com/coder-linping/azure-wiki-search-server and has 4 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP