Skip to main content
Glama
RMITBLOG

Parallels RAS MCP Server

by RMITBLOG

ras_infra_get_themes

Retrieve configured user portal themes to review branding, logos, and customization settings for Parallels RAS infrastructure.

Instructions

List user portal themes configured in the RAS farm, including branding, logos, and customisation settings. Use this to review portal appearance configuration or verify theme assignments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Complete tool registration and handler for ras_infra_get_themes - registers the tool and implements the async handler that fetches themes from the RAS API endpoint
    server.registerTool( "ras_infra_get_themes", { title: "Themes", description: "List user portal themes configured in the RAS farm, including branding, " + "logos, and customisation settings. Use this to review portal appearance " + "configuration or verify theme assignments.", annotations: READ_ONLY_ANNOTATIONS, inputSchema: {}, }, async () => { try { const data = await rasClient.get("/api/infrastructure/themes"); return { content: [{ type: "text" as const, text: JSON.stringify(data, null, 2) }] }; } catch (err) { return { content: [{ type: "text" as const, text: sanitiseError(err, "Failed to retrieve themes") }], isError: true }; } } );
  • Input schema definition for ras_infra_get_themes - empty object indicating no input parameters required
    inputSchema: {},
  • Tool registration configuration including name, title, description, annotations, and schema
    server.registerTool( "ras_infra_get_themes", { title: "Themes", description: "List user portal themes configured in the RAS farm, including branding, " + "logos, and customisation settings. Use this to review portal appearance " + "configuration or verify theme assignments.", annotations: READ_ONLY_ANNOTATIONS, inputSchema: {}, },

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/RMITBLOG/ParallelsRAS_MCP'

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