MCP server intelligence profile

Hellō Admin MCP Server

Enables AI assistants to create and manage Hellō applications with full developer context, supporting app creation, updates, secret generation, and logo management through a single unified tool

Local OnlyOfficial distributionhellocoop
Verified cleanNpm · 1.5.10

Our scanner tested version 1.5.10 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
1Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @hellocoop/admin-mcp from npm

Version 1.5.10 declares 1 executable entrypoint.

npm install --save-exact @hellocoop/admin-mcp@1.5.10
npx -y -p @hellocoop/admin-mcp@1.5.10 @hellocoop/admin-mcp
MCP client configuration example
{
  "mcpServers": {
    "@hellocoop/admin-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@hellocoop/admin-mcp@1.5.10",
        "@hellocoop/admin-mcp"
      ]
    }
  }
}

Identity

Canonical slughell-admin-mcp-server-a556b0beDeploymentLocal Only
Canonical packagenpm:@hellocoop/admin-mcpRepositoryhellocoop/admin-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@hellocoop/admin-mcp1.5.101Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@hellocoop/admin-mcp1.5.10CurrentSep 5, 20261 toolsPartial · 17 resources · 0 promptsFailed
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-2566f6163e36eb8ab0da93e4080bd140a4d0b019b54beabf3b1b4eea44234102350
Scannermcp-proof-engine 0.1.0Scan completedAug 21, 2026
Security rating45 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "@hellocoop/admin-mcp"
]
Rating reasons
[
  "security_policy_not_observed"
]

Current protocol inventory

2025-06-18Negotiated protocol
hello-admin-mcpServer-reported name
4Capability groups
Aug 21, 2026Observed

Tools 1

ToolCategoryAnnotationsRisk
hello_manage_appManage Hellō applications - create, read, update, create secrets, and upload logos
Input schema
{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "create",
        "read",
        "update",
        "create_secret",
        "update_logo_from_data",
        "update_logo_from_url"
      ],
      "description": "Action to perform: create (new app), read (get app), update (modify app), create_secret (generate secret), update_logo_from_data (set logo from base64 data), update_logo_from_url (set logo from URL)"
    },
    "team_id": {
      "type": "string",
      "description": "ID of the team that owns the application (optional for all actions - uses default team if not specified)"
    },
    "client_id": {
      "type": "string",
      "description": "ID of the OAuth client/application (optional for read - returns profile if omitted; required for: update, create_secret, update_logo_from_data, update_logo_from_url)"
    },
    "name": {
      "type": "string",
      "description": "Name of the application (optional for: create, update - if not provided for create, will be generated from user name)"
    },
    "tos_uri": {
      "type": "string",
      "description": "Terms of Service URI (optional for: create, update)"
    },
    "pp_uri": {
      "type": "string",
      "description": "Privacy Policy URI (optional for: create, update)"
    },
    "dev_localhost": {
      "type": "boolean",
      "description": "Allow localhost redirects in development environment (optional for: create, update)"
    },
    "dev_127_0_0_1": {
      "type": "boolean",
      "description": "Allow 127.0.0.1 redirects in development environment (optional for: create, update)"
    },
    "dev_wildcard": {
      "type": "boolean",
      "description": "Allow wildcard domain redirects in development environment (optional for: create, update)"
    },
    "dev_redirect_uris": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of allowed redirect URIs for development environment (optional for: create, update)"
    },
    "prod_redirect_uris": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of allowed redirect URIs for production environment (optional for: create, update)"
    },
    "device_code": {
      "type": "boolean",
      "description": "Whether the application supports device code flow (optional for: create, update)"
    },
    "logo_data": {
      "type": "string",
      "description": "Base64 encoded logo data (required for: update_logo_from_data)"
    },
    "logo_url": {
      "type": "string",
      "description": "URL of the logo image to fetch and set (required for: update_logo_from_url)"
    },
    "logo_content_type": {
      "type": "string",
      "description": "MIME type of the logo data, e.g. \"image/png\" (required for: update_logo_from_data; auto-detected for: update_logo_from_url)"
    },
    "theme": {
      "type": "string",
      "enum": [
        "light",
        "dark"
      ],
      "description": "Logo theme - whether this is for light or dark mode (optional for: update_logo_from_data, update_logo_from_url, defaults to \"light\")"
    }
  },
  "required": [
    "action"
  ],
  "allOf": [
    {
      "if": {
        "properties": {
          "action": {
            "const": "create"
          }
        }
      },
      "then": {
        "required": [
          "action"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "action": {
            "const": "read"
          }
        }
      },
      "then": {
        "required": [
          "action"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "action": {
            "const": "update"
          }
        }
      },
      "then": {
        "required": [
          "action",
          "client_id"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "action": {
            "const": "create_secret"
          }
        }
      },
      "then": {
        "required": [
          "action",
          "client_id"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "action": {
            "const": "update_logo_from_data"
          }
        }
      },
      "then": {
        "required": [
          "action",
          "client_id",
          "logo_data",
          "logo_content_type"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "action": {
            "const": "update_logo_from_url"
          }
        }
      },
      "then": {
        "required": [
          "action",
          "client_id",
          "logo_url"
        ]
      }
    }
  ]
}

Resources 17

  • Hellō Admin APIhttps://www.hello.dev/markdown/docs/docs/apis/admin.md

    Admin API reference for managing applications and publishers

  • Hellō Buttonshttps://www.hello.dev/markdown/docs/docs/buttons.md

    How to implement and customize Hellō login buttons in your application

  • Hellō Documentation Overviewhttps://www.hello.dev/markdown/docs/docs.md

    Complete documentation overview for integrating Hellō authentication into your application

  • Hellō Express Quickstarthttps://www.hello.dev/markdown/docs/docs/quickstarts/express.md

    Quick setup guide for Express.js applications

  • Hellō Fastify Quickstarthttps://www.hello.dev/markdown/docs/docs/quickstarts/fastify.md

    Quick setup guide for Fastify applications

  • Hellō Getting Startedhttps://www.hello.dev/markdown/docs/docs/getting-started.md

    Getting started guide for Hellō authentication integration

  • Hellō Login Button Implementation Guidehello://login-button-guidance

    Complete guide for implementing Hellō login buttons including code examples, customization options, provider hints, and best practices

  • Hellō Logo Design Guidancehello://logo-guidance

    Comprehensive guide for creating both light and dark theme logos for your Hellō application, including scaling, file requirements, and implementation tips

  • Hellō MCP Serverhttps://www.hello.dev/markdown/docs/docs/admin-mcp.md

    Model Context Protocol server documentation for Hellō integration

  • Hellō Next.js Quickstarthttps://www.hello.dev/markdown/docs/docs/quickstarts/nextjs.md

    Quick setup guide for Next.js applications

  • Hellō Next.js SDKhttps://www.hello.dev/markdown/docs/docs/sdks/nextjs.md

    Next.js SDK for Hellō authentication integration

  • Hellō Quickstartshttps://www.hello.dev/markdown/docs/docs/quickstarts.md

    Quick setup guides for Express, Fastify, Next.js, WordPress and other frameworks

  • Hellō React SDKhttps://www.hello.dev/markdown/docs/docs/sdks/react.md

    React SDK for Hellō authentication integration

  • Hellō Scopeshttps://www.hello.dev/markdown/docs/docs/scopes.md

    Available scopes and claims you can request from users

  • Hellō SDKshttps://www.hello.dev/markdown/docs/docs/sdks.md

    Software Development Kits for various frameworks and platforms

  • Hellō Wallet APIhttps://www.hello.dev/markdown/docs/docs/apis/wallet.md

    Wallet API reference including authorization parameters, provider_hint, domain_hint, and response handling

  • Supported Logo Formatshello://supported-logo-formats

    List of supported image formats and mimetypes for logo uploads

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Hellō Admin MCP Server questions

How do I install Hellō Admin MCP Server?

Install the selected package version with: npm install --save-exact @hellocoop/admin-mcp@1.5.10

What tools does Hellō Admin MCP Server provide?

Hellō Admin MCP Server exposed 1 tool during independent protocol observation, including hello_manage_app.

Is Hellō Admin MCP Server secure?

Our scanner tested version 1.5.10 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.