Skip to main content
Glama
TheNovaNodes

Nextcloud Control Plane MCP Server

by TheNovaNodes

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": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
run_occA

Executes arbitrary OCC command inside the Nextcloud container (nextcloud-app).

Args: command: The occ command string, e.g. "status --output=json" or "app:list"

get_statusA

Gets the Nextcloud system status via OCC status --output=json.

get_trusted_domainsA

Lists configured trusted domains in Nextcloud via OCC config:system:get trusted_domains.

add_trusted_domainA

Adds a new trusted domain to Nextcloud config. First checks current trusted domains to assign the next available index.

Args: domain: Domain name or IP address to add (e.g. 'cloud.example.com' or '192.168.1.100')

optimize_dbA

Runs database optimization commands on Nextcloud:

  • db:add-missing-indices

  • db:add-missing-columns

  • db:add-missing-primary-keys

  • db:convert-filecache-bigint

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clear and distinct role: run_occ is a generic executor, while get_status, get_trusted_domains, add_trusted_domain, and optimize_db are specific conveniences. Although run_occ can technically perform the others' tasks, the descriptions make the boundaries clear and no two tools appear interchangeable.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern (run_occ, get_status, get_trusted_domains, add_trusted_domain, optimize_db). The verbs clearly indicate the action and the nouns the target, making the naming predictable and uniform.

Tool Count5/5

With 5 tools, the server is well-scoped for a focused Nextcloud control plane. Each tool serves a distinct administrative purpose, and the count is neither too sparse nor excessive for the stated domain.

Completeness5/5

The presence of run_occ ensures full coverage of all possible occ commands, so there are no missing operations for the domain. The specific wrappers cover common tasks like status, trusted domains, and DB optimization, and any other need can be fulfilled via run_occ.

Maintenance

ActivityMaintained
ResponsivenessSlow