npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zihch/agent-dev-mcp

v0.2.1

Published

MCP server for Agent-Dev

Downloads

11

Readme

Agent-Dev MCP Server

The Agent-Dev MCP Server is a Model Context Protocol (MCP) server that provides a seamless connection between AI agents and developers for building apps and agents for Microsoft 365 and Microsoft 365 Copilot.

Overview

What can you do with it?

Agent-Dev MCP Server is designed to help you:

  • Build and deploy AI agents for Microsoft 365
  • Integrate with Microsoft 365 Copilot features
  • Access and manage app and agent templates
  • Troubleshoot common issues effectively

Currently Supported Tools

  • Schema Fetcher for:
    • App Manifest
    • Declarative Agent Manifest
    • API Plugin Manifest
  • Microsoft 365 and Microsoft 365 Copilot Knowledge Retriever
  • Apps and Agents Samples and Templates Code Snippets Retriever
  • Troubleshooting Retriever

Prerequisites

  1. The Agent-Dev MCP Server requires Node.js to install and run the server. If you don't have it installed, follow the instructions here.
  2. Install either the stable or Insiders release of VS Code:
  3. Install the GitHub Copilot and GitHub Copilot Chat extensions

Installation

Manual Install

For a step-by-step guide to install the Agent-Dev MCP Server, follow these instructions:

  • Add .vscode/mcp.json:
    {
        "servers": {
            "Agent-Dev Server": {
                "command": "npx",
                "args": [
                    "-y",
                    "@zihch/agent-dev-mcp@latest",
                    "server",
                    "start"
                ]
            }
        }
    }

Install From Command Palette

  • Install with NPX in VS Code Install with NPX in VS Code Insiders

List The Tools

For Visual Studio

Manual configuration required, please follow: Visual Studio MCP Official Guide

Local Development

To run and test the Agent-Dev MCP Server locally:

1. Clone and Install Dependencies

git clone https://github.com/zihch_microsoft/agent-dev-mcp.git
cd agent-dev-mcp
npm install --legacy-peer-deps

2. Build the Project

npm run build

This will create a dist/ folder with the compiled server.

3. Run Tests

npm run test:unit

4. Configure Local MCP in VS Code

Create or update .vscode/mcp.json in your workspace:

{
  "servers": {
    "Agent-Dev Server (Local)": {
      "command": "node",
      "args": [
        "/path/to/agent-dev-mcp/dist/index.js"
      ]
    }
  }
}

Replace /path/to/agent-dev-mcp with the actual path to your cloned repository.

5. Test the MCP

  1. Restart VS Code or reload the window (Cmd/Ctrl+Shift+P → "Reload Window")
  2. Open GitHub Copilot Chat
  3. Switch to Agent mode
  4. Click the refresh button on the tools list
  5. You should see "Agent-Dev Server (Local)" with 4 tools available

Available Scripts

  • npm run build - Build production bundle
  • npm run build:dev - Build development bundle
  • npm run watch - Watch mode for development
  • npm start - Run the built server
  • npm run test:unit - Run unit tests
  • npm run lint - Lint the code
  • npm run lint:fix - Fix linting issues

Feedback

We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Agent-Dev MCP Server.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

License

Copyright (c) Microsoft Corporation. All rights reserved.

Licensed under the MIT license.