@heroku/mcp-server
Version:
Heroku Platform MCP Server
73 lines (72 loc) • 2.41 kB
JavaScript
/**
* [Heroku Setup API - App Setup](https://devcenter.heroku.com/articles/platform-api-reference#app-setup)
* An app setup represents an app on Heroku that is setup using an environment, addons, and scripts described in an app.json manifest file.
*/
export default class AppSetupService {
endpoint;
/**
*
* @param endpoint The endpoint to use for the app setup service.
*/
constructor(endpoint) {
this.endpoint = endpoint;
}
/**
* Create a new app setup from a gzipped tar archive containing an app.json manifest file.
*
* @param payload Object to send to the endpoint.
* @param requestInit The initializer for the request.
* @returns The app setup.
*/
async create(payload, requestInit = {}) {
const response = await fetch(`${this.endpoint}/app-setups`, {
...requestInit,
body: JSON.stringify(payload, null, 2),
method: 'POST',
headers: {
...requestInit?.headers,
Accept: 'application/vnd.heroku+json; version=3.sdk',
'Content-Type': 'application/json'
}
});
if (response.ok) {
return (await response.json());
}
let message = response.statusText;
try {
({ message } = (await response.json()));
}
catch {
// no-op
}
throw new Error(`${response.status}: ${message}`, { cause: response });
}
/**
* Get the status of an app setup.
*
* @param appSetupIdentity unique identifier of app setup.
* @param requestInit The initializer for the request.
* @returns The app setup.
*/
async info(appSetupIdentity, requestInit = {}) {
const response = await fetch(`${this.endpoint}/app-setups/${appSetupIdentity}`, {
...requestInit,
method: 'GET',
headers: {
...requestInit?.headers,
Accept: 'application/vnd.heroku+json; version=3.sdk'
}
});
if (response.ok) {
return (await response.json());
}
let message = response.statusText;
try {
({ message } = (await response.json()));
}
catch {
// no-op
}
throw new Error(`${response.status}: ${message}`, { cause: response });
}
}