Command Palette

Search for a command to run...

UnylyUnyly
Browse all

PawnDex Server

FreeNot checked

MCP server for the Pawn package index, enabling AI assistants to search and inspect Pawn packages, retrieve repository details, and view ecosystem statistics.

GitHubEmbed

About

MCP server for the Pawn package index, enabling AI assistants to search and inspect Pawn packages, retrieve repository details, and view ecosystem statistics.

README

A Model Context Protocol (MCP) server for PawnDex, the Pawn package index for the SA-MP / open.mp ecosystem.

This server enables AI assistants (like Claude) to:

  • Search for Pawn packages with various filters.
  • Inspect detailed information about specific repositories, including releases and tags.
  • Retrieve global statistics and supported languages.

Tools

  1. search_packages: Search for packages using queries like mysql, is:official, user:openmultiplayer, etc.
  2. get_package: Get full details for a owner/repo combination.
  3. get_stats: View global PawnDex metrics.
  4. get_languages: List supported languages in the index.

Installation

Claude Desktop — via claude_desktop_config.json

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "pawndex": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/pawndex_mcp_server",
        "run",
        "pawndex_mcp_server"
      ]
    }
  }
}
Claude Code — STDIO via .mcp.json

Create a .mcp.json file in your project root:

{
  "mcpServers": {
    "pawndex": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/pawndex_mcp_server",
        "run",
        "pawndex_mcp_server"
      ]
    }
  }
}

Or add via CLI:

claude mcp add pawndex -- uv --directory /path/to/pawndex_mcp_server run pawndex_mcp_server
OpenCode — config via opencode.jsonc

Add to your opencode.jsonc:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "pawndex": {
      "type": "local",
      "command": [
        "uv",
        "--directory",
        "/path/to/pawndex_mcp_server",
        "run",
        "pawndex_mcp_server"
      ],
      "enabled": true
    }
  }
}
Gemini CLI — config via .gemini/settings.json

Add to your .gemini/settings.json:

{
  "mcpServers": {
    "pawndex": {
      "command": "uv",
      "args": ["--directory", "/path/to/pawndex_mcp_server", "run", "pawndex_mcp_server"]
    }
  }
}

Or add via CLI:

gemini mcp add pawndex -- uv --directory /path/to/pawndex_mcp_server run pawndex_mcp_server
OpenAI Codex CLI — config via ~/.codex/config.toml

Add to your ~/.codex/config.toml or project-scoped .codex/config.toml:

[mcp_servers.pawndex]
command = "uv"
args = ["--directory", "/path/to/pawndex_mcp_server", "run", "pawndex_mcp_server"]

Or add via CLI:

codex mcp add pawndex -- uv --directory /path/to/pawndex_mcp_server run pawndex_mcp_server

Development

Requires Python 3.11+.

# Install dependencies
uv sync

# Run the server locally (STDIO)
uv run pawndex_mcp_server

License

MIT

from github.com/sittiev/pawndex_mcp_server

Install PawnDex Server in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install pawndex-mcp-server

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add pawndex-mcp-server -- uvx --from git+https://github.com/sittiev/pawndex_mcp_server pawndex_mcp_server

FAQ

Is PawnDex Server MCP free?

Yes, PawnDex Server MCP is free — one-click install via Unyly at no cost.

Does PawnDex Server need an API key?

No, PawnDex Server runs without API keys or environment variables.

Is PawnDex Server hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install PawnDex Server in Claude Desktop, Claude Code or Cursor?

Open PawnDex Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare PawnDex Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs