GitHubスター
1
ユーザー評価
未評価
フォーク
0
イシュー
1
閲覧数
6
お気に入り
0
README
GHL MCP Integration
Model Context Protocol integration for Go High Level API key management.
Features
- Automated GHL login
- Sub-account API key generation
- Database storage of API keys
- MCP-compliant server implementation
Setup
- Clone the repository
- Install dependencies:
npm install
- Copy
.env.example
to.env
and fill in your credentials - Create the database using
src/database/schema.sql
- Start the server:
npm start
Usage
The MCP server exposes a ghl-api-key
resource with a generateKey
method that accepts a sub-account ID parameter.
Example
const result = await server.resources['ghl-api-key'].generateKey('sub-account-123');
console.log(result.apiKey);
Security Considerations
- Store credentials securely
- Implement proper access controls
- Monitor API key usage
- Regularly rotate credentials