We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yconst/preloop'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { LitElement, html, css } from 'lit';
import { customElement } from 'lit/decorators.js';
@customElement('assignments-view')
export class AssignmentsView extends LitElement {
static styles = css`
:host {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
color: var(--lumo-contrast-60pct);
}
h1 {
font-size: var(--lumo-font-size-xxl);
}
`;
render() {
return html` <h1>Coming Soon</h1> `;
}
}