We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wanaku-ai/wanaku'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.dashboard-page {
padding: 1rem;
.title {
margin-bottom: 0.5rem;
}
.description {
margin-bottom: 1.5rem;
color: var(--cds-text-secondary, #525252);
}
.dashboard-actions {
display: flex;
justify-content: flex-end;
margin-bottom: 1rem;
}
.dashboard-section {
margin-bottom: 2rem;
}
.section-heading {
font-size: 0.875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.32px;
color: var(--cds-text-secondary, #525252);
padding-bottom: 0.75rem;
margin-bottom: 1rem;
border-bottom: 1px solid var(--cds-border-subtle, #e0e0e0);
}
.stats-grid {
margin-top: 0;
}
.stat-tile {
padding: 1.5rem;
margin-bottom: 1rem;
border: 1px solid var(--cds-border-subtle, #e0e0e0);
border-radius: 4px;
transition: box-shadow 0.15s ease;
&:hover {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.stat-icon {
color: var(--cds-text-secondary, #525252);
margin-bottom: 0.75rem;
}
.stat-value {
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
color: var(--cds-text-primary, #161616);
}
.stat-label {
font-size: 0.875rem;
color: var(--cds-text-secondary, #525252);
margin-top: 0.5rem;
}
}
.capability-tile {
padding: 1.5rem;
margin-bottom: 1rem;
border: 1px solid var(--cds-border-subtle, #e0e0e0);
border-radius: 4px;
transition: box-shadow 0.15s ease;
&:hover {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.capability-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
color: var(--cds-text-primary, #161616);
}
.capability-details {
display: flex;
gap: 2rem;
.capability-stat {
padding-left: 0.75rem;
border-left: 3px solid var(--cds-border-subtle, #e0e0e0);
&--active {
border-left-color: var(--cds-support-success, #24a148);
}
&--inactive {
border-left-color: var(--cds-support-error, #da1e28);
}
&--neutral {
border-left-color: var(--cds-border-strong, #8d8d8d);
}
.capability-value {
font-size: 1.75rem;
font-weight: 600;
line-height: 1.2;
color: var(--cds-text-primary, #161616);
}
.capability-label {
font-size: 0.75rem;
color: var(--cds-text-secondary, #525252);
margin-top: 0.25rem;
}
}
}
}
}
@media (prefers-color-scheme: dark) {
.dashboard-page {
.stat-tile:hover,
.capability-tile:hover {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
}
}
@media (max-width: 672px) {
.dashboard-page {
.stat-tile .stat-value {
font-size: 2rem;
}
.capability-tile .capability-details {
flex-direction: column;
gap: 1rem;
}
}
}