# io.github.Shubochandrosarker/bridgistic (npm · bridgistic-mcp-server)

Connect Claude to WordPress safely: signed requests, scoped keys, approvals, logs, snapshots.

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

## Components

- npm · `bridgistic-mcp-server`: 67/100 (this document), [markdown](https://verifymcp.io/servers/shubochandrosarker-bridgistic/bridgistic-mcp-server.md), [page](https://verifymcp.io/servers/shubochandrosarker-bridgistic/bridgistic-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `bridgistic-mcp-server`
- Version: `1.1.1`
- 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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (122 of 124), 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 (122 of 124), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (GPL-2.0-or-later).
  - Actively maintained (last published 30 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 5271 tokens (~122/item across 43 items; 43 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 83/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 48% 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 shubochandrosarker-bridgistic -- npx -y bridgistic-mcp-server
```

### Codex

```bash
codex mcp add shubochandrosarker-bridgistic -- npx -y bridgistic-mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add shubochandrosarker-bridgistic --command npx --arg -y --arg bridgistic-mcp-server
```

### Hermes

```yaml
mcp_servers:
  shubochandrosarker-bridgistic:
    command: "npx"
    args: ["-y", "bridgistic-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "shubochandrosarker-bridgistic": {
      "command": "npx",
      "args": [
        "-y",
        "bridgistic-mcp-server"
      ]
    }
  }
}
```

## 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 67, +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 66, +43)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: GPL-2.0-or-later

### 2026-07-31 (score 23, −20)

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

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

First indexed and scored.

## MCP tools (43)

### `bridgistic_list_sites` (~43 tokens)

List connected WordPress sites

List the WordPress sites this bridge can operate on, by alias. Use the returned alias as the `site` parameter in other tools. Returns no secrets.

### `bridgistic_get_site_info` (~96 tokens)

Get WordPress site info

Discover a site's stack before acting: WP/PHP versions, active theme, installed plugins (active flag), and detected frameworks (WooCommerce, Elementor, ACF). Read-only; requires the key's `site:read` scope. Always call this first on an unfamiliar site.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_execute_php` (~183 tokens)

Execute PHP in WordPress context

Run PHP inside the full WordPress runtime ($wpdb, all functions, loaded plugins). Highest-privilege tool; requires the key's `php:execute` scope. Use `return` to surface a value; echoed output is captured separately.

Args:
  \- code (string): PHP to run. A leading "<?php" is optional.
  \- site (string, optional): target alias.

Returns: { output, return, errors[], exception, elapsed_ms }.

Use when: a task has no dedicated structured tool yet. Prefer the structured tools (posts/options/etc.) when they exist, and snapshot before risky writes.

Input parameters:

- `code` (string, required): PHP source. Example: return get_option("blogname");
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_db_query` (~258 tokens)

Run a SQL query

Execute SQL against the site database. The bridge classifies the statement: SELECT/SHOW/EXPLAIN/DESCRIBE/WITH need `db:read`; anything else needs `db:write`. Writes are routed through the Guard: dry_run previews impact in a rolled-back transaction, destructive writes auto-snapshot the affected table(s), and approval applies if the key requires it.

Args:
  \- sql (string): a single SQL statement using the site's real table prefix.
  \- site (string, optional): target alias.
  \- dry_run / approval_id / force: guard controls (writes only).

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `sql` (string, required): Single SQL statement.

### `bridgistic_list_posts` (~127 tokens)

List posts / pages / CPTs

List content with pagination. Scope: `posts:read`. Args: post_type (default 'post'), status (default 'any'), search, per_page (≤100), page. Returns id/title/type/status/slug/link + total + has_more.

Input parameters:

- `page` (integer)
- `per_page` (integer)
- `post_type` (string)
- `search` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `status` (string)

### `bridgistic_get_post` (~67 tokens)

Get a single post

Fetch one post/page/CPT by id with full content + meta. Scope: `posts:read`.

Input parameters:

- `id` (integer, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_create_post` (~236 tokens)

Create a post

Create a post/page/CPT. Scope: `posts:write`. Args: title, content, excerpt, status (draft|publish|...), slug, type, author, parent, meta (object). Supports dry_run and approval flow.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `author` (integer)
- `content` (string)
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `excerpt` (string)
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `meta` (object)
- `parent` (integer)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `slug` (string)
- `status` (string)
- `title` (string)
- `type` (string)

### `bridgistic_update_post` (~212 tokens)

Update a post

Update an existing post by id. Scope: `posts:write`. Auto-snapshots the post first (rollback via snapshot_id). Same fields as create. Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `content` (string)
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `excerpt` (string)
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `id` (integer, required)
- `meta` (object)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `slug` (string)
- `status` (string)
- `title` (string)

### `bridgistic_delete_post` (~175 tokens)

Delete a post

Trash (default) or permanently delete a post. Scope: `posts:write`. Auto-snapshots first. Set permanent=true to skip trash. Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `id` (integer, required)
- `permanent` (boolean)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_list_media` (~77 tokens)

List media

List attachments (id/title/mime/url). Scope: `posts:read`. Args: per_page, page.

Input parameters:

- `page` (integer)
- `per_page` (integer)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_upload_media` (~184 tokens)

Upload media

Upload to the media library from a URL or base64. Scope: `media:write`. Provide either url, or filename + content_base64. Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `content_base64` (string)
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `filename` (string)
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `url` (string)

### `bridgistic_delete_media` (~153 tokens)

Delete media

Permanently delete an attachment by id. Scope: `media:write`. Auto-snapshots first.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `id` (integer, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_list_users` (~92 tokens)

List users

List users (id/login/email/display_name/roles). Scope: `users:read`. Never returns passwords. Args: search, per_page, page.

Input parameters:

- `page` (integer)
- `per_page` (integer)
- `search` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_create_user` (~202 tokens)

Create a user

Create a user. Scope: `users:write`. Args: login, email (both required), role (default subscriber), display_name, password (auto-generated if omitted). Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `display_name` (string)
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `email` (string, required)
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `login` (string, required)
- `password` (string)
- `role` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_update_user` (~188 tokens)

Update a user

Update a user by id (email, display_name, role). Scope: `users:write`. Auto-snapshots the user first. Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `display_name` (string)
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `email` (string)
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `id` (integer, required)
- `role` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_get_option` (~88 tokens)

Get an option

Read a wp_options value BY NAME. Scope: `options:read`. The name must be in the site's allowlist (WP Admin → Bridgistic → Settings) — secrets are unreadable by design.

Input parameters:

- `name` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_update_option` (~170 tokens)

Update an option

Write a wp_options value. Scope: `options:write`. Name must be allowlisted. Auto-snapshots the old value. Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `name` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `value`

### `bridgistic_list_plugins` (~55 tokens)

List plugins

List installed plugins with active flag + version. Scope: `plugins:manage`.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_toggle_plugin` (~188 tokens)

Activate / deactivate a plugin

Activate or deactivate a plugin. Scope: `plugins:manage`. High-risk: ALWAYS routes through approval and snapshots active_plugins first. Args: plugin (file, e.g. 'woocommerce/woocommerce.php'), state ('activate'|'deactivate').

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `plugin` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `state` (string, required)

### `bridgistic_fs_list` (~67 tokens)

List a directory

List files/dirs under a path (confined to ABSPATH). Scope: `fs:read`.

Input parameters:

- `path` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_fs_read` (~67 tokens)

Read a file

Read a file's contents (≤5MB, inside ABSPATH). Scope: `fs:read`.

Input parameters:

- `path` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_fs_write` (~185 tokens)

Write a file

Write a file inside ABSPATH. Scope: `fs:write`. PHP files may ONLY be written inside the uploads/bridgistic-sandbox dir. Overwrites auto-snapshot the old file. Supports dry_run + approval.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `content` (string, required)
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `path` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_fs_delete` (~163 tokens)

Delete a file

Delete a file inside ABSPATH. Scope: `fs:write`. High-risk: always routes through approval and snapshots the file first. Supports dry_run.

Input parameters:

- `approval_id` (string): Approval id returned by a previous call that needed approval. Re-pass the SAME args plus this id once an admin approves.
- `dry_run` (boolean): If true, return what WOULD change without modifying anything. Nothing is persisted, snapshotted, or queued.
- `force` (boolean): Proceed even if a pre-op snapshot could not be taken. Irreversible — use sparingly.
- `path` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_snapshot_create` (~139 tokens)

Create a snapshot

Manually capture reversible state before a risky change. Scope: `snapshot:manage`. Types + target:
  \- post   { id }
  \- user   { id }
  \- option { name }
  \- tables { tables: ["wp_options", ...] } (≤50k rows each)
  \- file   { path }
Returns a snapshot_id for bridgistic_snapshot_restore.

Input parameters:

- `label` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `target` (object, required)
- `type` (string, required)

### `bridgistic_snapshot_restore` (~90 tokens)

Restore a snapshot

Roll back to a snapshot by id (undo a write/delete). Scope: `snapshot:manage`. Use the snapshot_id returned by a write tool or by bridgistic_snapshot_create / bridgistic_snapshot_list.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `snapshot_id` (string, required)

### `bridgistic_snapshot_list` (~73 tokens)

List snapshots

List recent snapshots (auto + manual) with id/type/label/size/created/restored. Scope: `snapshot:manage`.

Input parameters:

- `limit` (integer)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_snapshot_delete` (~70 tokens)

Delete a snapshot

Delete a stored snapshot by id (frees space; cannot be restored after). Scope: `snapshot:manage`.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `snapshot_id` (string, required)

### `bridgistic_approval_status` (~87 tokens)

Check approval status

Check whether a queued operation has been approved. Returns status: pending | approved | rejected | executed. When approved, retry the ORIGINAL tool call with the same args plus approval_id to execute it.

Input parameters:

- `approval_id` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_usage` (~82 tokens)

Check this key's usage & limits

Return the calling key's tier, rate limit (req/min), monthly quota, and current usage (this minute / today / this month + top actions). Call before large batch operations to avoid hitting the quota mid-run.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_memory_set` (~111 tokens)

Save a site memory note

Persist a fact about this site for future sessions (conventions, IDs, client preferences, quirks). Scope: `memory:write`. Args: key (required), value (any JSON), category (default 'general'). Overwrites the same category+key.

Input parameters:

- `category` (string)
- `key` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `value`

### `bridgistic_memory_get` (~70 tokens)

Get a site memory note

Read one memory note by key (+optional category). Scope: `memory:read`.

Input parameters:

- `category` (string)
- `key` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_memory_list` (~78 tokens)

List site memory

List stored memory notes, optionally filtered by category. Scope: `memory:read`. Call at the start of a session to recall what's known about a site.

Input parameters:

- `category` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_memory_delete` (~70 tokens)

Delete a site memory note

Remove a memory note by key (+optional category). Scope: `memory:write`.

Input parameters:

- `category` (string)
- `key` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_playbook_save` (~224 tokens)

Save a reusable playbook

Store an ordered, parameterised sequence of bridge operations for replay. Scope: `playbook:manage`.

Each step = { method, route, params, save_as }. Use templates in params:
  \- {{vars.NAME}}                 → a run-time input
  \- {{steps.REF.data.result.id}}  → a value from an earlier step's result envelope

Example steps (create a landing page then set it as the front page):
[
  { "method":"POST","route":"posts","params":{"type":"page","title":"{{vars.title}}","status":"publish"},"save_as":"page" },
  { "method":"POST","route":"options","params":{"name":"page_on_front","value":"{{steps.page.data.result.id}}"} }
]

Input parameters:

- `description` (string)
- `name` (string)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `slug` (string, required)
- `steps` (array, required)

### `bridgistic_playbook_list` (~58 tokens)

List playbooks

List saved playbooks (slug/name/description). Scope: `playbook:manage`.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_playbook_get` (~64 tokens)

Get a playbook

Fetch one playbook incl. its steps. Scope: `playbook:manage`.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `slug` (string, required)

### `bridgistic_playbook_run` (~195 tokens)

Run a playbook

Execute a saved playbook. Scope: `playbook:manage`; each step also enforces its own scope + the Guard. Args:
  \- slug, vars (object of run inputs)
  \- dry_run (preview every step), force (skip snapshot aborts)
  \- approvals: { "<step ref>": "<approval_id>" } to resume a step that paused for approval.

If a step needs approval the run pauses and returns { status: "paused_for_approval", paused_at, approval_id }; approve in WP Admin, then re-run with approvals mapped to that ref.

Input parameters:

- `approvals` (object)
- `dry_run` (boolean)
- `force` (boolean)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `slug` (string, required)
- `vars` (object)

### `bridgistic_playbook_delete` (~62 tokens)

Delete a playbook

Delete a playbook by slug. Scope: `playbook:manage`.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `slug` (string, required)

### `bridgistic_schedule_create` (~250 tokens)

Schedule a playbook

Run a saved playbook unattended on a recurrence (WP-Cron). Scope: `schedule:manage`. The schedule runs under THIS key's current scopes, so the key must hold the scopes every step needs.

Args:
  \- playbook (slug), recurrence (once|bridgistic_5min|bridgistic_15min|bridgistic_30min|hourly|twicedaily|daily|weekly)
  \- vars (object passed to the run), start_at (unix seconds, optional first-run time)
  \- dry_run (run in preview mode every time — good for testing a schedule), force.

Note: unattended runs never auto-approve. If a step needs approval the run records "paused_for_approval" and stops — use a key WITHOUT require_approval for fully autonomous schedules.

Input parameters:

- `dry_run` (boolean)
- `force` (boolean)
- `playbook` (string, required)
- `recurrence` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.
- `start_at` (integer)
- `vars` (object)

### `bridgistic_schedule_list` (~62 tokens)

List schedules

List scheduled playbooks with recurrence, next/last run, and last status. Scope: `schedule:manage`.

Input parameters:

- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_schedule_toggle` (~70 tokens)

Enable / disable a schedule

Pause or resume a schedule without deleting it. Scope: `schedule:manage`.

Input parameters:

- `enabled` (boolean, required)
- `schedule_id` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_schedule_delete` (~63 tokens)

Delete a schedule

Remove a schedule and unregister its cron event. Scope: `schedule:manage`.

Input parameters:

- `schedule_id` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

### `bridgistic_schedule_run_now` (~77 tokens)

Run a schedule now

Trigger a scheduled playbook immediately (does not change its recurrence). Scope: `schedule:manage`. Useful to test a schedule end-to-end.

Input parameters:

- `schedule_id` (string, required)
- `site` (string): Site alias to target (e.g. "guns2ammo"). Omit when only one site is configured.

## Diagnostics

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

## Score history

- 2026-08-03: 67
- 2026-08-02: 66
- 2026-08-01: 23
- 2026-07-31: 23
- 2026-07-30: 43
- 2026-07-28: 43
- 2026-07-27: 43

## Links

- npm package: https://www.npmjs.com/package/bridgistic-mcp-server
- Socket report: https://socket.dev/npm/package/bridgistic-mcp-server
- Repository: https://github.com/Shubochandrosarker/bridgistic-claude-marketplace
- Website: https://wordpressistic.com/
- Changelog RSS feed: https://verifymcp.io/servers/shubochandrosarker-bridgistic/bridgistic-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/shubochandrosarker-bridgistic/bridgistic-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/shubochandrosarker-bridgistic/bridgistic-mcp-server
