everything vs ab100
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ab100 by timothywarner-org | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper Toolseducation |
| Language | TypeScript | Bicep |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ab100 · Summary
Certification prep course with MCP-powered Foundry agent implementation and GitHub Copilot study assistant.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
ab100 · Use cases
- Prepare for Microsoft AB-100 certification exam
- Deploy Foundry agents as MCP servers
- Create a study assistant using GitHub Copilot with MCP integration
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingab100 · Install
Installation
Prerequisites
- Microsoft 365 tenant with Microsoft 365 Copilot and Microsoft Copilot Studio licensing
- Microsoft Power Platform environment for agent authoring
- Microsoft Foundry project for model and Foundry Tools demos
- Working knowledge of one Microsoft business application stack
Quick Start
- Clone the repository:
git clone https://github.com/timothywarner-org/ab100.git - Open in VS Code to enable the Cert Buddy agent
- Follow instructions in
src/README.mdto run the Hour 3 POC Foundry agent + MCP stack
MCP Server Configuration
The MCP server is configured in .vscode/mcp.json and uses a Python FastMCP implementation in the src/app/ directory.