import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
// Import package.json to get version
import packageJson from '../package.json';
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
const config: Config = {
title: 'Sentry Sensei MCP',
tagline: 'A Model Context Protocol (MCP) server for integrating with Sentry and JIRA APIs',
favicon: 'img/favicon.ico',
// Future flags, see https://docusaurus.io/docs/api/docusaurus-config#future
future: {
v4: true, // Improve compatibility with the upcoming Docusaurus v4
},
// Set the production url of your site here
url: 'https://sentry-sensei-mcp.netlify.app',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'freddie-manatal', // Usually your GitHub org/user name.
projectName: 'sentry-sensei-mcp', // Usually your repo name.
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
routeBasePath: '/', // Serve the docs at the site's root
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/freddie-manatal/sentry-sensei-mcp/tree/main/docs/',
},
blog: false,
pages: false, // Disable pages plugin
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
navbar: {
title: 'Sentry Sensei MCP',
logo: {
alt: 'Sentry Sensei MCP Logo',
src: 'img/logo.jpg',
},
items: [
{
type: 'docSidebar',
sidebarId: 'tutorialSidebar',
position: 'left',
label: 'Documentation',
},
{
type: 'html',
position: 'left',
value: `<a href="https://github.com/freddie-manatal/sentry-sensei-mcp/releases/tag/v${packageJson.version}" target="_blank" rel="noopener noreferrer" style="text-decoration: none;"><span class="navbar__version" style="background: #CB3837; color: white; padding: 6px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: bold; margin-left: 8px;">v${packageJson.version}</span></a>`,
},
{
href: 'https://github.com/freddie-manatal/sentry-sensei-mcp',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: '/',
},
],
},
{
title: 'Community',
items: [
{
label: 'GitHub',
href: 'https://github.com/freddie-manatal/sentry-sensei-mcp',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Sentry Sensei MCP. Built with Docusaurus.`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
export default config;