We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LLMTooling/mdx-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
with-jsx-components.mdx•869 B
---
title: Interactive Components Example
description: Demonstrating JSX components in MDX
version: 1.0.0
---
import { Button } from './components/Button'
import { Alert } from './components/Alert'
# Interactive Documentation
This document demonstrates how MDX can include JSX components.
<Alert type="info">
This is an informational alert component.
</Alert>
## Using Components
You can embed React components directly in your content:
<Button variant="primary" size="large">
Click Me
</Button>
## Code Examples
Here's how you might use these components:
```jsx
<Alert type="warning">
Be careful with this operation!
</Alert>
```
<Alert type="success">
Your changes have been saved successfully.
</Alert>
## Lists and Content
Regular Markdown still works:
- First item
- Second item
- Third item
And so do **bold**, *italic*, and `code` styles.