We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gleanwork/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from 'vitepress';
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: 'MCP Server',
description: 'Documentation for Glean MCP Server',
base: '/mcp-server/',
// Ignore dead links during build (remove this when all pages are created)
ignoreDeadLinks: true,
themeConfig: {
nav: [
{ text: 'Home', link: '/' },
{ text: 'Troubleshooting', link: '/troubleshooting' },
],
sidebar: [
{
text: 'Getting Started',
items: [{ text: 'Introduction', link: '/' }],
},
{
text: 'Troubleshooting',
items: [{ text: 'General', link: '/troubleshooting' }],
},
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/gleanwork/mcp-server' },
],
search: {
provider: 'local',
},
},
});