Skip to main content
Glama

ScriptIt

One control plane for your agent's tools. Connect remote MCP servers once; every agent — in any sandbox — gets them back two ways:

  • a remote MCP endpoint (/mcp) with compact meta-tools (no tool-list bloat), and

  • a CLI (scriptit) an agent can pair from inside any sandbox via a public-key handshake approved over an MCP tool call — upstream credentials never enter the sandbox.

Plus a proxied LLM endpoint for scripting, and watches: run a command or tool on an interval, optionally have an LLM verify the output, and emit structured events your agent can poll or stream.

Local-first build: everything runs on your machine (SQLite, one server process).

Quick start

pnpm install
pnpm build
pnpm start            # control plane on http://127.0.0.1:4747 (prints admin + mcp tokens)

Dev mode (server + web UI + demo upstream MCP, all watching):

pnpm dev

Related MCP server: cloud-to-local

Connect an agent (MCP)

Add to Claude Code (or any MCP client):

claude mcp add --transport http scriptit http://127.0.0.1:4747/mcp --header "Authorization: Bearer <mcp token>"

Tools: list_connectors, search_tools, call_tool, approve_cli, create_watch, list_watches, run_watch, delete_watch, get_events, llm.

Pair the CLI (the handshake)

In the sandbox / any shell:

scriptit pair                 # prints a code like AB3D-9XKQ and waits

Then either ask your agent to call approve_cli with that code over its ScriptIt MCP connection, or approve it in the dashboard. From then on:

scriptit connectors
scriptit call demo list_cronjobs
scriptit llm "summarize:" - < notes.txt
scriptit watch create --name failed-crons \
  --connector demo --tool list_cronjobs --interval 5m \
  --verify "Emit an event iff any cronjob is failing; type=cron_failure, summarize which."
scriptit events --follow --json      # structured events, one JSON per line

The CLI signs every request with an ed25519 key; sessions are short-lived and revocable from the dashboard. Upstream tokens live only in the control plane, encrypted at rest.

Layout

Path

What

apps/server

control plane: REST + MCP endpoint + OAuth broker + watch engine (port 4747)

apps/web

dashboard SPA

packages/cli

scriptit CLI

packages/shared

shared types + ed25519 signing

packages/demo-mcp

demo upstream MCP server (port 4748)

PROTOCOL.md

the contract: pairing, signing, REST, MCP tools, watches

Notes

  • Local build trusts localhost: admin/mcp tokens are the auth boundary. Don't expose 4747.

  • OAuth connectors use Dynamic Client Registration + PKCE (works with Linear, Notion, Sentry, Atlassian, Stripe, Supabase, …). Bearer/PAT connectors cover GitHub's MCP and friends.

  • scriptit watch command-type watches execute shell commands on the server host — that's the point (local build), but remember it when you deploy this anywhere shared.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server for persistent SSH sessions with tmux integration, port forwarding, and SFTP file writes, built for AI agent workflows.
    MIT
  • F
    license
    Not graded
    quality
    A
    maintenance
    Enables MCP-compatible AI clients to invoke CLI-driven agent tools over Streamable HTTP, including shell execution, file operations, patching, image viewing, web search, and nested agent tasks, with permission modes and real-time progress streaming.
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shreyjindal81/scriptit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server