# io.usefulapi/laravel-forge (remote · laravel-forge.usefulapi.io)

Manage Laravel Forge servers, sites, and deployments from your AI assistant.

- Trust score: 73/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `laravel-forge.usefulapi.io`: 73/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-laravel-forge/laravel-forge.md), [page](https://verifymcp.io/servers/io-usefulapi-laravel-forge/laravel-forge)

## Channel facts

- Endpoint: `https://laravel-forge.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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.

- **Endpoint Security**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1432 tokens (~84/item across 17 items; 17 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-laravel-forge https://laravel-forge.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-laravel-forge]
url = "https://laravel-forge.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-laravel-forge": {
      "type": "remote",
      "url": "https://laravel-forge.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-laravel-forge --url https://laravel-forge.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-laravel-forge:
    url: "https://laravel-forge.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-laravel-forge": {
      "type": "http",
      "url": "https://laravel-forge.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-02 (score 73, +1)

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

### 2026-07-31 (score 72, +3)

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

### 2026-07-30 (score 69, −2)

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

### 2026-07-29 (score 71, +1)

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

### 2026-07-28 (score 70, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 69, +57)

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

### 2026-07-26 (score 12)

First indexed and scored.

## MCP tools (17)

### `forge_list_organizations` (~77 tokens)

List organizations

List organizations you belong to. Call this FIRST to get the organization id used by nearly every other tool. Forge v2: GET /orgs.

Input parameters:

- `page_cursor` (string): Pagination cursor from links.next / meta (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).

### `forge_get_current_user` (~24 tokens)

Get current user

Get the authenticated Forge user. Forge v2: GET /user.

### `forge_list_servers` (~173 tokens)

List servers

List servers in an organization. Call forge_list_organizations first to get the organization id. Forge v2: GET /orgs/{organization}/servers.

Input parameters:

- `database_type` (string): Filter by database type (maps to filter[database_type]).
- `name` (string): Filter by server name (maps to filter[name]).
- `organization` (string, required): Organization id (from forge_list_organizations).
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `php_version` (string): Filter by PHP version (maps to filter[php_version]).
- `provider` (string): Filter by provider (maps to filter[provider]).
- `region` (string): Filter by region (maps to filter[region]).

### `forge_get_server` (~54 tokens)

Get server

Get a single server's details. Forge v2: GET /orgs/{organization}/servers/{server}.

Input parameters:

- `organization` (string, required): Organization id.
- `server` (string, required): Server id (from forge_list_servers).

### `forge_list_server_events` (~85 tokens)

List server events

List provisioning/activity events for a server. Forge v2: GET /orgs/{organization}/servers/{server}/events.

Input parameters:

- `organization` (string, required): Organization id.
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `server` (string, required): Server id.

### `forge_list_sites` (~99 tokens)

List sites

List sites hosted on a server. Forge v2: GET /orgs/{organization}/servers/{server}/sites.

Input parameters:

- `name` (string): Filter by site name (maps to filter[name]).
- `organization` (string, required): Organization id.
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `server` (string, required): Server id.

### `forge_get_site` (~62 tokens)

Get site

Get a single site's details (org-level lookup — no server id needed). Forge v2: GET /orgs/{organization}/sites/{site}.

Input parameters:

- `organization` (string, required): Organization id.
- `site` (string, required): Site id (from forge_list_sites).

### `forge_list_deployments` (~98 tokens)

List deployments

List a site's deployment history. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments.

Input parameters:

- `organization` (string, required): Organization id.
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `server` (string, required): Server id.
- `site` (string, required): Site id.

### `forge_get_deployment` (~84 tokens)

Get deployment

Get a single deployment's details. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments/{deployment}.

Input parameters:

- `deployment` (string, required): Deployment id (from forge_list_deployments).
- `organization` (string, required): Organization id.
- `server` (string, required): Server id.
- `site` (string, required): Site id.

### `forge_get_deployment_log` (~80 tokens)

Get deployment log

Get a deployment's output/log. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments/{deployment}/log.

Input parameters:

- `deployment` (string, required): Deployment id.
- `organization` (string, required): Organization id.
- `server` (string, required): Server id.
- `site` (string, required): Site id.

### `forge_get_deployment_status` (~70 tokens)

Get deployment status

Get the current deployment status for a site. Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/deployments/status.

Input parameters:

- `organization` (string, required): Organization id.
- `server` (string, required): Server id.
- `site` (string, required): Site id.

### `forge_list_databases` (~86 tokens)

List databases

List database schemas on a server. Forge v2: GET /orgs/{organization}/servers/{server}/database/schemas.

Input parameters:

- `organization` (string, required): Organization id.
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `server` (string, required): Server id.

### `forge_list_scheduled_jobs` (~89 tokens)

List scheduled jobs

List cron/scheduled jobs on a server. Forge v2: GET /orgs/{organization}/servers/{server}/scheduled-jobs.

Input parameters:

- `organization` (string, required): Organization id.
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `server` (string, required): Server id.

### `forge_list_monitors` (~87 tokens)

List monitors

List server monitors (CPU/disk/etc.). Forge v2: GET /orgs/{organization}/servers/{server}/monitors.

Input parameters:

- `organization` (string, required): Organization id.
- `page_cursor` (string): Pagination cursor (maps to page[cursor]).
- `page_size` (integer): Results per page (maps to page[size]).
- `server` (string, required): Server id.

### `forge_get_site_env` (~83 tokens)

Get site environment (.env)

Get a site's .env file content. ⚠️ Returns SENSITIVE config (secrets, DB credentials, API keys). Forge v2: GET /orgs/{organization}/servers/{server}/sites/{site}/environment.

Input parameters:

- `organization` (string, required): Organization id.
- `server` (string, required): Server id.
- `site` (string, required): Site id.

### `forge_deploy_site` (~81 tokens)

Deploy site

⚠️ Triggers a new deployment of the site (runs the deployment script). Returns the created deployment. Forge v2: POST /orgs/{organization}/servers/{server}/sites/{site}/deployments.

Input parameters:

- `organization` (string, required): Organization id.
- `server` (string, required): Server id.
- `site` (string, required): Site id.

### `forge_run_site_command` (~100 tokens)

Run site command

⚠️ Runs an arbitrary shell command in the site's directory on the server. Use with care. Forge v2: POST /orgs/{organization}/servers/{server}/sites/{site}/commands.

Input parameters:

- `command` (string, required): The shell command to run, e.g. "php artisan migrate --force".
- `organization` (string, required): Organization id.
- `server` (string, required): Server id.
- `site` (string, required): Site id.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-laravel-forge/laravel-forge#diagnostics

## Score history

- 2026-08-03: 73
- 2026-08-02: 73
- 2026-08-01: 72
- 2026-07-31: 72
- 2026-07-30: 69
- 2026-07-29: 71
- 2026-07-28: 70
- 2026-07-27: 69
- 2026-07-26: 12

## Links

- Remote endpoint: https://laravel-forge.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-laravel-forge/laravel-forge/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-laravel-forge/laravel-forge/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-laravel-forge/laravel-forge
