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
simple-jsx.mdx•435 B
---
title: Simple JSX Example
type: demo
---
# Interactive Documentation
This document demonstrates MDX without external imports.
## Using JSX
You can use simple JSX directly:
<div className="alert">
This is an alert!
</div>
## Code Examples
```jsx
const Button = () => <button>Click me</button>
```
## More Content
Regular markdown works fine:
- Item 1
- Item 2
- Item 3
**Bold text** and *italic text* work as expected.