mcp-inspector-server

ACNet-AI/mcp-inspector-server

3.1

If you are the rightful owner of mcp-inspector-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The mcp-inspector-server is a Model Context Protocol (MCP) server designed to facilitate the integration and management of tools and resources in a structured environment.

mcp-inspector-server

MCP server: mcp-inspector-server

Quick Start

# Install dependencies
uv sync

# Start server
uv run python server.py

Configuration

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "mcp-inspector-server": {
      "command": "uv",
      "args": ["run", "python", "server.py"],
      "cwd": "/path/to/mcp-inspector-server"
    }
  }
}

Project Structure

mcp-inspector-server/
ā”œā”€ā”€ config.yaml          # Server configuration
ā”œā”€ā”€ pyproject.toml       # Python project configuration
ā”œā”€ā”€ server.py            # Server entry file
ā”œā”€ā”€ README.md            # Documentation
ā”œā”€ā”€ CHANGELOG.md         # Version change log
ā”œā”€ā”€ .env                 # Environment variables configuration
ā”œā”€ā”€ .gitignore           # Git ignore file
ā”œā”€ā”€ tools/               # Tools implementation directory
ā”œā”€ā”€ resources/           # Resources implementation directory
└── prompts/             # Prompt template directory

Development

Edit server.py to add your functionality:

@server.tool()
def my_tool(arg: str) -> str:
    """Tool description"""
    return f"Result: {{arg}}"

Generated by MCP Factory