Skip to main content
Glama
getmasv

masv

Official

get_integrations

Retrieve a list of all connected integrations across cloud and on-prem systems such as AWS S3, Frame.io, Dropbox, and MASV Storage Gateway to manage file transfer connections.

Instructions

Get list of connected integrations. Integration could be cloud or on-prem system like AWS S3, Frame.io, Dropbox, MASV Storage Gateway and many others

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler function that fetches all cloud integrations (cloud_connections) for the team via the MASV API.
    async function getIntegrations() {
      const url = new URL(
        `${MASV_BASE_URL}/v1/teams/${MASV_TEAM_ID}/cloud_connections`,
      );
    
      const headers = {
        "content-type": "application/json",
        "x-api-key": MASV_API_KEY,
      };
    
      const r = await fetch(url.toString(), { headers });
      const data = await r.json();
    
      return data;
    }
  • src/index.ts:245-260 (registration)
    Registration of the 'get_integrations' tool on the MCP server. It calls getIntegrations() and wraps the result in mcpOk/mcpError.
    server.registerTool(
      "get_integrations",
      {
        description:
          "Get list of connected integrations. Integration could be cloud or on-prem system like AWS S3, Frame.io, Dropbox, MASV Storage Gateway and many others",
      },
      async () => {
        try {
          const data = await getIntegrations();
    
          return mcpOk(data);
        } catch (error) {
          return mcpError(error);
        }
      },
    );
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must convey behavior. It only states 'get list' without mentioning what data is returned (e.g., IDs, types), authentication needs, or any limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One concise sentence that conveys the main purpose. Could be slightly more structured but is efficient with no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, description should hint at response fields. It fails to mention what information the list contains (e.g., names, IDs), leaving the response somewhat ambiguous.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has zero parameters, so the description does not need to explain parameters. Baseline 4 applies, and the description does not add unnecessary info.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'Get list of connected integrations' with specific examples of integrations like AWS S3, Frame.io, etc., differentiating from sibling tools that perform actions on integrations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-not or alternatives to siblings are given. Usage is implied as a simple listing tool, but no guidance on distinguishing from related tools like list_files_on_integration.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/getmasv/masv-mcp-server'

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