1. Conduid
  2. Developer Tools
  3. Azure Wiki Search
MCP server · Developer Tools

Azure Wiki Search

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

Unclaimed last commit a year ago devtools
41Fair

Scored 4 months ago · breakdown

About Azure Wiki Search

Azure Wiki Search is an MCP server published by coder-linping in the Developer Tools category: this mcp server implements the MCP specification to allow AI agents to search on Azure wiki. It has been installed 0 times through Conduid.

The repository has 4 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx azure-wiki-search-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Azure Wiki Search

Powered by Claude · Grounded in docs

I know everything about Azure Wiki Search. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

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

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

    On Mac|Linux

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

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": {
                "ORG": "Your organization,default is microsoft",
                "PROJECT": "Your project, default is Edge"
            },
          }
        }
      }
    

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Azure Wiki Search

How do I install Azure Wiki Search?

Run npx azure-wiki-search-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Azure Wiki Search safe to use with an AI agent?

Its trust score is 41 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Azure Wiki Search still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.