Skip to main content
Glama
nghizas
by nghizas
README.md
# grounded-mcp

<!-- mcp-name: io.github.nghizas/grounded -->

MCP server for real-time package versions, download counts, and service status — powered by [Grounded](https://grounded-api.dev).

Tracks 1,000+ npm and PyPI packages and 76 cloud services. No signup required.

## Install

### Claude Code

```bash
claude mcp add grounded -- uvx grounded-mcp
```

### Claude Desktop

Add to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "grounded": {
      "command": "uvx",
      "args": ["grounded-mcp"]
    }
  }
}
```

### Cursor

Add to your MCP settings:

```json
{
  "grounded": {
    "command": "uvx",
    "args": ["grounded-mcp"]
  }
}
```

## Tools

| Tool | Description | Example |
|------|-------------|---------|
| `check_package_version` | Latest version of an npm or PyPI package | `check_package_version("react")` |
| `check_downloads` | Weekly download count | `check_downloads("flask", registry="pypi")` |
| `check_service_status` | Cloud service operational status | `check_service_status("github")` |
| `lookup_fact` | General-purpose fact lookup | `lookup_fact("npm", "react", "license")` |

### Available fields

For npm/PyPI packages: `latest_version`, `license`, `deprecated`, `dep_count`, `required_runtime`, `weekly_downloads`

For services: `status`

## Configuration

Works out of the box with no API key (50 lookups/day per IP).

For higher limits, set `GROUNDED_API_KEY`:

```bash
claude mcp add grounded -e GROUNDED_API_KEY=your_key -- uvx grounded-mcp
```

Sign up for a free API key (1,000 req/day) at https://grounded-api.dev.

## Example

Ask your AI assistant:

> "What's the latest version of React?"

The assistant calls `check_package_version("react")` and gets:

```
Value: 19.2.4
Source: https://registry.npmjs.org/react
Fetched at: 2026-03-06T12:00:00Z
Hash: sha256:a1b2c3...
Tier: warm (TTL: 300s)
```

## Links

- [Grounded website](https://grounded-api.dev)
- [REST API](https://api.grounded-api.dev/v1/npm/react/latest_version)
- [CLI tool](https://www.npmjs.com/package/grounded-cli)

TDQS

A3.5/5.0

Scored across 4 tools

Disambiguation2/5

The tools `check_downloads` and `check_package_version` are both specific to package registries, and `lookup_fact` can replicate their functionality by querying the same sources (npm/pypi) with appropriate fields, causing ambiguity. `check_service_status` is distinct but also could be covered by `lookup_fact` with source 'statuspage'.

Naming Consistency4/5

Three tools use the `check_` prefix, while `lookup_fact` uses a different verb but still follows a verb_noun pattern. The naming is mostly consistent and predictable.

Tool Count4/5

With 4 tools, the set is small but reasonable for checking package metrics and service status. The redundancy suggests a slightly lower count could suffice, but overall it is not excessive or insufficient.

Completeness3/5

The server covers basic checks for npm/PyPI packages and cloud services, but lacks operations like listing available packages/services, comparing versions, or retrieving more detailed metadata beyond the predefined fields. Some intended functionality is indirectly available via `lookup_fact`, but the surface feels gappy.

Maintenance

ActivityInactive
ResponsivenessNo issues