@hellocoop/mcp
v1.3.0
Published
Model Context Protocol (MCP) for Hellō Admin API.
Readme
@hellocoop/mcp (BETA)
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.
Quick Install
📖 Full Documentation & Installation Guide
Quick Configuration
Copy one of these configurations into your MCP client settings:
Stdio Transport (Local):
{
"hello-admin-stdio": {
"command": "npx",
"args": ["-y", "@hellocoop/mcp@latest"],
"type": "stdio",
"env": {
"HELLO_DOMAIN": "hello-beta.net"
}
}
}streamableHTTP Transport (Remote):
{
"hello-admin-http": {
"url": "https://mcp.hello-beta.net/",
"type": "http"
}
}Usage
This MCP server lets you create and manage your Hellō applications directly from your AI assistant instead of using the Hellō Console.
📖 For detailed usage instructions, examples, and troubleshooting, visit: hello.dev/docs/mcp
Features
- Application Management: Create, read, and update Hellō applications
- Publisher Management: Create and manage publishers (teams/organizations)
- OAuth Integration: Secure authentication via browser-based OAuth flow
- Legal Document Generation: Create Terms of Service and Privacy Policy templates
- Logo Management: Upload and manage application logos
- Multiple Transports: Both stdio and HTTP MCP transports supported
- Environment Flexibility: Configurable domains and admin servers
Available Tools
hello_get_profile- Get your developer profile and publishershello_create_publisher- Create a new publisher (team/organization)hello_read_publisher- Read detailed publisher informationhello_create_application- Create a new Hellō applicationhello_read_application- Read detailed application informationhello_update_application- Update application settingshello_upload_logo- Upload application logoshello_create_secret- Create client secrets for applicationshello_generate_login_button- Generate HTML/JavaScript login buttonshello_generate_legal_docs- Generate Terms of Service and Privacy Policy templates
Available Resources
- Hellō Documentation - Complete integration documentation
- Hellō Quickstarts - Framework-specific setup guides
- Hellō Buttons - Login button implementation guide
- Hellō Scopes - Available scopes and claims reference
- Hellō Wallet API - Wallet API reference documentation
- Hellō Logo Design Guidance - Comprehensive guide for creating theme-appropriate logos
Environment Variables
HELLO_DOMAIN: Override the default domain (defaults tohello.coop)HELLO_ADMIN: Override the admin server URL (defaults tohttps://admin.hello.coop)
Contributing & Development
We want your feedback! This MCP server is in beta and we're actively improving it based on real-world usage.
How to Contribute
- 🐛 Report Issues: GitHub Issues - Found a bug or have a feature request?
- 🔧 Submit Pull Requests: GitHub PRs - Help us improve the server
- 💬 Join the Discussion: Discord - Share feedback and get help
Local Development
For local development and testing:
# Clone the repository
git clone https://github.com/hellocoop/packages-js
cd packages-js/MCP
# Install dependencies
npm install
# Run in stdio mode
npm start
# Run HTTP server mode
npm run start:httpGetting Access Tokens for Testing
The get-token script performs OAuth flow and outputs token data as JSON:
# Get complete token response
npm run get-token
# Extract just the access token
npm run get-token | jq -r '.access_token'
# Use in shell commands
TOKEN=$(npm run get-token 2>/dev/null | jq -r '.access_token')
curl -H "Authorization: Bearer $TOKEN" https://admin.hello.coop/api/v1/profile
# Save to file for reuse
npm run get-token > token.jsonTesting
Run the comprehensive test suite:
# Run all automated tests
npm test
# Run interactive OAuth test
npm run test:oauth-interactiveDocker Development
Build and test locally:
# Build local Docker image
npm run docker:build-local
# Run locally built image
docker run -p 3000:3000 hellocoop/mcp:localPublishing
For maintainers publishing to Docker Hub:
npm run docker:publish