Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A Model Context Protocol (MCP) server that provides comprehensive documentation and usage examples for the AutoFixture testing library.

README.md

AutoFixture MCP Server

A Model Context Protocol (MCP) server that provides comprehensive documentation and usage examples for the AutoFixture testing library. This server runs in a Docker container and can be easily integrated with VSCode, Cursor, or Claude Desktop.

Features

  • Quick Start Guide: Get up and running with AutoFixture basics
  • Method Search: Search for specific AutoFixture methods and their usage
  • Class Information: Detailed documentation for core AutoFixture classes
  • Package Information: NuGet package details for all AutoFixture extensions
  • Usage Patterns: Common patterns and code examples
  • Best Practices: Recommended approaches for using AutoFixture
  • GitHub Documentation: Fetch latest docs directly from the repository

Available Tools

  1. get_quick_start: Get AutoFixture quick start guide and basic usage examples
  2. search_methods: Search for AutoFixture methods (e.g., 'Create', 'Build', 'Freeze')
  3. get_class_info: Get detailed information about classes like 'Fixture' or 'IFixture'
  4. get_packages: List AutoFixture NuGet packages by category (core/mocking/testing/all)
  5. get_usage_pattern: Get common usage patterns (e.g., 'customizing', 'automaq', 'xunit')
  6. get_best_practices: Get AutoFixture best practices and recommendations
  7. fetch_github_docs: Fetch latest documentation from GitHub (README, cheatsheet, FAQ)

Prerequisites

  • Docker installed on your system
  • Node.js 20+ (for local development)
  • VSCode, Cursor, or Claude Desktop

Quick Setup

Option 1: Using Docker (Recommended)

  1. Build the Docker image:
   docker build -t autofixture-mcp-server:latest .
  1. Test the server:
   docker run --rm -i autofixture-mcp-server:latest

Option 2: Using Docker Compose

docker-compose up -d

Integration with Cursor/VSCode

Cursor Setup

  1. Open Cursor settings (Cmd+Shift+P → "Preferences: Open User Settings (JSON)")
  2. Add the MCP server configuration:
{
  "mcp": {
    "servers": {
      "autofixture": {
        "command": "/Users/admin/dev/mcp/mcp-wrapper.sh"
      }
    }
  }
}

Or use the provided config file: ```bash

Copy the configuration

cat cursor-mcp-config.json

Add to your Cursor settings


### VSCode with Claude Code

1. Install the Claude Code extension
2. Open your MCP configuration file:
   - On macOS: `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
   - On Linux: `~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
   - On Windows: `%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json`

3. Add the server configuration:

{ "mcpServers": { "autofixture": { "command": "/Users/admin/dev/mcp/mcp-wrapper.sh", "args": [], "env": {} } } } ```

Claude Desktop Setup

  1. Open Claude Desktop settings:
  • On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • On Windows: %APPDATA%\Claude\claude_desktop_config.json
  • On Linux: ~/.config/Claude/claude_desktop_config.json
  1. Add the server configuration:
{
  "mcpServers": {
    "autofixture": {
      "command": "/Users/admin/dev/mcp/mcp-wrapper.sh",
      "args": [],
      "env": {}
    }
  }
}
  1. Restart Claude Desktop

Local Development Setup

If you want to develop or modify the server locally:

  1. Install dependencies:
   npm install
  1. Build the project:
   npm run build
  1. Run locally (without Docker):
   npm start
  1. Development mode with auto-rebuild:
   npm run dev

Usage Examples

Once integrated, you can use the MCP server in your conversations:

Example 1: Getting Started

User: "Use the autofixture MCP to show me how to get started with AutoFixture"
AI: [Calls get_quick_start tool and provides quick start guide]

Example 2: Searching for Methods

User: "Search for methods related to creating objects in AutoFixture"
AI: [Calls search_methods with query "create" and shows available methods]

Example 3: Getting Usage Patterns

User: "Show me how to use AutoFixture with xUnit"
AI: [Calls get_usage_pattern with pattern "xunit" and provides examples]

Example 4: Package Information

User: "What AutoFixture packages are available for mocking?"
AI: [Calls get_packages with category "mocking" and lists all mocking packages]

Configuration Files

  • mcp-config.json: Generic MCP configuration
  • cursor-mcp-config.json: Cursor-specific configuration
  • claude_desktop_config.json: Claude Desktop configuration
  • docker-compose.yml: Docker Compose configuration
  • mcp-wrapper.sh: Shell script wrapper for Docker integration

Troubleshooting

Server not starting

  • Ensure Docker is running: docker ps
  • Check Docker logs: docker logs autofixture-mcp-server
  • Rebuild the image: docker build -t autofixture-mcp-server:latest .

Permission issues with wrapper script

chmod +x mcp-wrapper.sh

Cursor/VSCode not detecting the server

  • Restart the editor after adding configuration
  • Check that the wrapper script path is absolute
  • Verify Docker is installed: docker --version

Testing the server manually

# Run the wrapper script directly
./mcp-wrapper.sh

# Or use Docker directly
docker run --rm -i autofixture-mcp-server:latest

Project Structure

.
├── src/
│   └── index.ts          # Main MCP server implementation
├── dist/                 # Compiled JavaScript (generated)
├── Dockerfile            # Docker image configuration
├── docker-compose.yml    # Docker Compose setup
├── mcp-wrapper.sh        # Shell wrapper for Docker
├── package.json          # Node.js dependencies
├── tsconfig.json         # TypeScript configuration
├── mcp-config.json       # Generic MCP config
├── cursor-mcp-config.json # Cursor-specific config
├── claude_desktop_config.json # Claude Desktop config
└── README.md             # This file

Architecture

The server is built using:

  • TypeScript: Type-safe server implementation
  • @modelcontextprotocol/sdk: Official MCP SDK
  • axios: HTTP client for fetching GitHub documentation
  • cheerio: HTML parsing (for future enhancements)
  • Docker: Containerization for easy deployment

Contributing

Feel free to extend the server with additional tools:

  1. Add new tool definitions in the ListToolsRequestSchema handler
  2. Implement the tool logic in the CallToolRequestSchema handler
  3. Rebuild the Docker image

License

MIT

Resources

Version

1.0.0

---

Built with MCP for enhanced AI-assisted development with AutoFixture.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.