# MTA:SA Documentation MCP Server (npm · mtasa-docs-mcp)

MCP server for MTA:SA documentation with intelligent search and caching

- Trust score: 82/100 (high trust)
- Change this week: +29
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `mtasa-docs-mcp`: 82/100 (this document), [markdown](https://verifymcp.io/servers/luminaire1337-mtasa-docs-mcp/mtasa-docs-mcp.md), [page](https://verifymcp.io/servers/luminaire1337-mtasa-docs-mcp/mtasa-docs-mcp)

## Channel facts

- Registry: `npm`
- Package: `mtasa-docs-mcp`
- Version: `1.0.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 88/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (102 of 106), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (102 of 106), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Luminaire1337/mtasa-docs-mcp).
  - Clear OSI-approved license (GPL-3.0).
  - Actively maintained (last published 111 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 780 tokens (~70/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add luminaire1337-mtasa-docs-mcp -- npx -y mtasa-docs-mcp
```

### Codex

```bash
codex mcp add luminaire1337-mtasa-docs-mcp -- npx -y mtasa-docs-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "luminaire1337-mtasa-docs-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mtasa-docs-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add luminaire1337-mtasa-docs-mcp --command npx --arg -y --arg mtasa-docs-mcp
```

### Hermes

```yaml
mcp_servers:
  luminaire1337-mtasa-docs-mcp:
    command: "npx"
    args: ["-y", "mtasa-docs-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "luminaire1337-mtasa-docs-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mtasa-docs-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 82, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 81, +15)

- [security regression] Known CVEs: partial → unverified
- [security improvement] Malware scan: unverified → pass
- [functional regression] Dependency health: partial → unverified
- [functional improvement] Stability: unverified → 0.23

### 2026-08-01 (score 66, +35)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] The attested source repository moved: Luminaire1337/mtasa-docs-mcp
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional] Licence: GPL-3.0

### 2026-07-31 (score 31, −22)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 53)

First indexed and scored.

## MCP tools (11)

### `search_functions` (~89 tokens)

Primary discovery tool. Search MTA:SA functions and events by name or keyword before coding. Returns canonical function names with side/category so LLMs can reliably chain into docs tools.

Input parameters:

- `limit` (integer): Maximum number of results
- `query` (string, required): Function name or partial name to search for
- `side` (string): Filter by client-side, server-side, or shared functions

### `search_events` (~76 tokens)

Event discovery tool. Search MTA:SA client/server events only (not regular functions), then chain into docs tools with exact event names.

Input parameters:

- `limit` (integer): Maximum number of results
- `query` (string, required): Event name or keyword to search for
- `side` (string): Filter by client-side or server-side events

### `find_functions_for_task` (~93 tokens)

Task-to-functions matcher. Use this FIRST when user intent is high-level (e.g., 'vehicle dealership', 'login panel'). Returns ranked MTA:SA functions/events optimized for follow-up documentation retrieval.

Input parameters:

- `limit` (integer): Maximum number of suggestions
- `task_description` (string, required): Description of what you want to accomplish (e.g., 'login system', 'spawn vehicle', 'create gui window')

### `find_events_for_task` (~105 tokens)

Task-to-events matcher. Use when you need event names for handlers/triggers (e.g., resource lifecycle, player joins, marker hits). Returns ranked MTA:SA events only.

Input parameters:

- `limit` (integer): Maximum number of suggestions
- `side` (string): Filter by client-side or server-side events
- `task_description` (string, required): Description of the event workflow you need (e.g., 'when player joins', 'resource start', 'on marker hit')

### `get_function_docs` (~90 tokens)

Fetch authoritative docs for exactly ONE MTA:SA function/event by canonical name. Preferred over manual web browsing. For multiple names, use get_multiple_function_docs in one call.

Input parameters:

- `function_name` (string, required): Function/event name (case-insensitive)
- `include_optional_arguments` (boolean): Whether to include optional arguments in the parameters section
- `use_cache` (boolean): Whether to use cached documentation

### `get_function_examples` (~44 tokens)

Get only code examples for one function/event after docs lookup. Use when writing implementation snippets and tests.

Input parameters:

- `function_name` (string, required): Function/event name (case-insensitive)

### `get_multiple_function_docs` (~85 tokens)

Batch docs retrieval for implementation phase. Provide exact function/event names (ideally from search/find tools) and get combined authoritative docs in one response.

Input parameters:

- `function_names` (array, required): Array of function/event names to fetch
- `include_examples` (boolean): Whether to include code examples
- `include_optional_arguments` (boolean): Whether to include optional arguments in each parameters section

### `list_functions_by_category` (~55 tokens)

Enumerate canonical function/event names in a category. Useful for discovery when query terms are vague.

Input parameters:

- `category` (string, required): The category to list functions from
- `limit` (integer): Maximum number of results to return

### `get_cache_stats` (~20 tokens)

Get statistics about the MTA:SA documentation cache.

### `recommend_doc_workflow` (~77 tokens)

Planner tool that tells LLMs exactly which mtasa-docs tools to call next for a given task. Use this to enforce MCP-first workflows and avoid manual wiki scraping.

Input parameters:

- `known_function_names` (array): Function names already known in the conversation
- `task_description` (string, required): What the user wants to build or debug

### `clear_cache` (~46 tokens)

Clear the MTA:SA documentation cache for a specific function or all functions.

Input parameters:

- `function_name` (string, required): Function name to clear cache for, or 'all' to clear everything

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/luminaire1337-mtasa-docs-mcp/mtasa-docs-mcp#diagnostics

## Score history

- 2026-08-03: 82
- 2026-08-02: 81
- 2026-08-01: 66
- 2026-07-31: 31
- 2026-07-30: 53
- 2026-07-28: 53
- 2026-07-27: 53

## Links

- npm package: https://www.npmjs.com/package/mtasa-docs-mcp
- Socket report: https://socket.dev/npm/package/mtasa-docs-mcp
- Repository: https://github.com/Luminaire1337/mtasa-docs-mcp
- Changelog RSS feed: https://verifymcp.io/servers/luminaire1337-mtasa-docs-mcp/mtasa-docs-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/luminaire1337-mtasa-docs-mcp/mtasa-docs-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/luminaire1337-mtasa-docs-mcp/mtasa-docs-mcp
