Skip to main content
Glama
datashaman

Gimme MCP

Official
by datashaman

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
inspect_hostA

Inspect the configured Ubuntu host and report its OS, installed runtime commands, service states, and non-interactive sudo availability. Makes no changes.

plan_stackA

Resolve every desired package against the configured host's current package metadata and return an exact provisioning plan. Unavailable packages make the plan unready. Makes no changes and returns a plan_id for provision_stack.

provision_stackA

Apply a previously returned stack plan to the configured host. Installs missing APT packages and enables PostgreSQL and Valkey; rejects stale or invented plan IDs.

list_appsA

List locally registered PHP applications and their Git repository, framework recipe, branch, and computed deployment path. Does not contact the host.

register_appA

Register or update a PHP application's allowlisted deployment definition. Changes only the local registry; it does not connect to or modify the host.

plan_app_resourcesA

Plan a registered application's PostgreSQL database, database role, Valkey namespace, and protected remote environment file. Makes no changes.

provision_app_resourcesA

Create a registered application's PostgreSQL database and role, generate its password on the host, and write PostgreSQL and Valkey settings to shared/.env. Requires a matching plan from plan_app_resources.

plan_deployA

Return Deployer's task execution plan for a registered application. Makes no remote changes and returns the current application plan_id for deploy_app.

deploy_appA

Deploy a registered application from Git using its pinned Deployer recipe. Requires the current plan_id and may run framework migrations defined by that recipe.

list_releasesB

List retained releases for a registered application and identify the current release. Makes no changes.

rollback_appA

Roll a registered application back to its previous good Deployer release. Changes the live current symlink and marks the replaced release as bad.

service_statusA

Report systemd status for PostgreSQL, Valkey, or Caddy on the configured host. The service name is restricted to this allowlist and no changes are made.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
server_manifestValidated desired server identity, bootstrap endpoint, SSH user, and application root.
stack_manifestValidated desired APT packages and managed systemd services.
application_registryValidated registry of applications available to Gimme.

TDQS

A4/5.0

Scored across 12 tools

Disambiguation5/5

Each tool targets a distinct resource and action: host inspection, stack planning/provisioning, app registration, app resource planning/provisioning, deployment, releases, rollback, and service status. The plan/provision pairs are clearly separated by their plan/resource names and descriptions, so an agent should not confuse them.

Naming Consistency4/5

Tool names follow a mostly consistent verb_noun snake_case pattern such as plan_stack, provision_stack, list_apps, deploy_app, and rollback_app. The only outlier is service_status, which uses a noun_noun form instead of a verb-first convention, but it is still readable and not confusing.

Tool Count5/5

Twelve tools is well-scoped for a provisioning and deployment server. Each tool covers a meaningful step in the workflow, and none feel redundant or unnecessary.

Completeness4/5

The tool set covers the main lifecycle well: inspect, plan, provision, register, deploy, list releases, rollback, and check service status. The main gap is the lack of teardown or removal operations, such as unregistering an app or dropping provisioned resources, but most core workflows are fully supported.

Maintenance

ActivityMaintained
ResponsivenessNo issues