Skip to main content
Glama
basicauth.js966 B
'use strict'; const AuthPrompt = require('../types/auth'); function defaultAuthenticate(value, state) { if (value.username === this.options.username && value.password === this.options.password) { return true; } return false; } const factory = (authenticate = defaultAuthenticate) => { const choices = [ { name: 'username', message: 'username' }, { name: 'password', message: 'password', format(input) { if (this.options.showPassword) { return input; } let color = this.state.submitted ? this.styles.primary : this.styles.muted; return color(this.symbols.asterisk.repeat(input.length)); } } ]; class BasicAuthPrompt extends AuthPrompt.create(authenticate) { constructor(options) { super({ ...options, choices }); } static create(authenticate) { return factory(authenticate); } } return BasicAuthPrompt; }; module.exports = factory();

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/ajaystream/hubspot-mcp-custom'

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