by hellocoop
Manage and secure Hellō authentication apps with Hellō Admin — create, configure, and monitor user authentication quickl
Manages Hellō authentication applications through an MCP server. Lets you create, update, and configure Hellō apps directly from your AI assistant.
Hellō Admin is an official MCP server published by hellocoop that provides AI assistants with tools and capabilities via the Model Context Protocol. Manage and secure Hellō authentication apps with Hellō Admin — create, configure, and monitor user authentication quickl It is categorized under developer tools. This server exposes 1 tool that AI clients can invoke during conversations and coding sessions.
You can install Hellō Admin in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
MIT
Hellō Admin is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated Hellō Admin against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend Hellō Admin for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Hellō Admin is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Hellō Admin reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, Hellō Admin benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Hellō Admin has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Hellō Admin benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: Hellō Admin is the kind of server we cite when onboarding engineers to host + tool permissions.
Hellō Admin has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, Hellō Admin benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 33
Model Context Protocol (MCP) server for creating and managing Hellō applications.
🚧 BETA Status: This MCP server is currently in beta. We're actively seeking feedback and welcome contributions! Please report issues, suggest improvements, or submit pull requests to help us improve the developer experience.
📖 Full Documentation & Installation Guide
Copy one of these configurations into your MCP client settings:
NPM Package (Latest):
{
"hello-admin-stdio": {
"command": "npx",
"args": ["-y", "@hellocoop/admin-mcp@latest"],
"type": "stdio"
}
}
HTTP Transport (Remote):
{
"hello-admin-http": {
"url": "https://admin-mcp.hello.coop/",
"type": "http"
}
}
📖 See Local Development Setup for running from source
This MCP server provides a single powerful tool (hello_manage_app) that lets you create and manage your Hellō applications directly from your AI assistant. Unlike traditional APIs, every operation automatically includes your complete developer context - profile, teams, and applications - making it perfect for AI assistants.
📖 For detailed usage instructions, examples, and troubleshooting, visit: hello.dev/docs/admin-mcp
🎯 Core Tool:
hello_manage_app - The main tool for all application management
create, read, update, create_secret, update_logo_from_data, update_logo_from_url🔄 Always In Context: Unlike traditional APIs, every tool response includes your complete developer context:
This means you never lose context between operations - perfect for AI assistants that need to understand your complete development environment.
hello_manage_app Actions:📝 create - Create new applications
{ profile, application, action_result }👁️ read - Read application details
client_id: Returns your complete profile contextclient_id: Returns profile + specific application{ profile, application?, action_result }✏️ update - Update application settings
{ profile, application, action_result }🔑 create_secret - Generate client secrets
{ profile, application, client_secret, action_result }🎨 update_logo_from_data - Upload logo from base64 data
{ profile, application, update_result, action_result }🔗 update_logo_from_url - Upload logo from URL
{ profile, application, update_result, action_result }Every response includes your complete profile context, making it perfect for AI assistants that need to maintain awareness of your development environment.
HELLO_DOMAIN: Override the default domain (defaults to hello.coop)HELLO_ADMIN: Override the admin server URL (defaults to https://admin.hello.coop)We want your feedback! This MCP server is in beta and we're actively improving it based on real-world usage.
For local development and testing:
# Clone the repository
git clone https://github.com/hellocoop/admin-mcp
cd admin-mcp
# Install dependencies
npm install
The configure your AI client to run the local version
Local Development (Node.js):
{
"hello-admin-local": {
"command": "node",
"args": ["path/to/HelloCoop/admin-mcp/src/stdio.js"],
"type": "stdio"
}
}
Run the comprehensive test suite:
# Run all automated tests
npm test
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.