Are you the author? Sign in to claim
A Model Context Protocol (MCP) server that provides AI assistants with the ability to search and retrieve Microsoft Aut
A Model Context Protocol (MCP) server that provides AI assistants with the ability to search and retrieve Microsoft AutoGen documentation.
npm install -g @sykuang/mcp-autogen-doc
npx @sykuang/mcp-autogen-doc
Add this server to your Claude Desktop configuration file:
macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"autogen-docs": {
"command": "npx",
"args": ["@sykuang/mcp-autogen-doc"]
}
}
}
Alternatively, if installed globally:
{
"mcpServers": {
"autogen-docs": {
"command": "mcp-autogen-doc"
}
}
}
This server uses the standard MCP protocol and should work with any MCP-compatible client.
search_autogen_docsSearch AutoGen documentation for relevant information.
Parameters:
query (string, required): Search query to find relevant AutoGen documentationlimit (number, optional): Maximum number of results to return (default: 10)version (string, optional): AutoGen version to search (default: 'stable')Supported versions:
stable (default): Latest stable documentationdev: Development/latest documentationv0.4.0, v0.3.x: Specific version documentation (when available)Example:
Search for "multi-agent conversation" in AutoGen docs
autogen-docs-overviewProvides an overview of the AutoGen documentation structure and key sections.
# Clone the repository
git clone https://github.com/sykuang/mcp-autogen-doc.git
cd mcp-autogen-doc
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode
npm run dev
You can test the server locally using the MCP Inspector:
npm install -g @modelcontextprotocol/inspector
npx @modelcontextprotocol/inspector node dist/index.js
This MCP server leverages AutoGen's native documentation search capabilities to provide intelligent and accurate search results. The search process works as follows:
https://microsoft.github.io/autogen/stable/search.htmlThe server focuses specifically on Microsoft's AutoGen documentation, ensuring high-quality, relevant results for AutoGen-related queries.
This server searches across all sections of Microsoft AutoGen documentation:
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see the LICENSE file for details.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows