---
title: Neon Documentation MDX Components - Specialized Guide
subtitle: Specialized and less common components for specific use cases
enableTableOfContents: true
updatedOn: '2025-07-11T20:37:11.993Z'
---
A comprehensive reference for specialized and less commonly used MDX components in Neon documentation. This guide covers components used in specific scenarios, specialized workflows, and edge cases.
Some components in this guide are currently unused or may be deprecated in future updates. These are included for reference but may be removed from the codebase.
How to use specialized MDX components for specific use cases
When to choose specialized components over common ones
Technical requirements and dependencies for specialized components
Best practices for complex component implementations
Component GuideComponent Icon GuideComponent ArchitectureDocumentation Contribution Guide
## Quick navigation
- [Code display](#code-display) - Enhanced code blocks and external code
- [Media components](#media-components) - Video and multimedia content
- [Specialized shared components](#specialized-shared-components) - Feature status indicators
- [SDK components](#sdk-components) - Auto-generated SDK documentation
- [Utility components](#utility-components) - Forms and specialized UI elements
- [Specialized components](#specialized-components) - Complex and specialized functionality
- [Community components](#community-components) - Community engagement features
---
## Code display
Enhanced code blocks and external code embedding.
### ExternalCode
Embed code from external sources or files.
```mdx
```
**Live preview:**
_[External code loaded from GitHub README.md with syntax highlighting]_
Example of external code loading (mocked for showcase):
```markdown
# Neon Database
Serverless Postgres built for the cloud.
## Key Features
- **Instant provisioning**: Create databases in seconds
- **Autoscaling**: Scale compute up and down automatically
- **Branching**: Create database branches like Git
- **Scale to zero**: Save costs when inactive
## Quick Start
1. Sign up at console.neon.tech
2. Create your first project
3. Connect using your preferred client
```
---
## Media components
Components for embedding and displaying multimedia content.
### YoutubeIframe
Embedded YouTube video player.
```mdx
```
**Live preview:**
---
### Video
Native video player component.
```mdx
```
**Live preview:**
---
## Specialized shared components
Status indicators for features in different stages of development and release.
### Feature Announcements
Status indicators for features in different stages:
```mdx
```
**Live preview:**
---
### EarlyAccessProps
Status indicator for early access features with custom feature name.
```mdx
```
**Live preview:**
---
## SDK components
Auto-generated components specifically for SDK documentation. These load content from [shared templates](/docs/community/component-guide#common-shared-components).
### Getting Started
```mdx
```
### SDK Type Components
```mdx
```
**Note**: These SDK components require corresponding files in the `content/docs/shared-content/` directory and proper configuration in `sharedMdxComponents`.
---
## Utility components
Specialized UI components for specific use cases.
### RequestForm
Contact or request submission form.
There are types (`extension` and `regions`) defined in `src/components/shared/request-form/data.js`. To define a new type, define a new config in `data.js` and register it in `DATA` there.
```mdx
```
**Live preview:**
---
### ChatOptions
Chat interface options component with a specific use case in the sidebar navigation.
**Important:** This component is designed for internal navigation use only and should not be used in regular documentation content.
---
## Specialized components
Complex components for specialized functionality and workflows.
### AIRule
AI-powered rule component for automated documentation features.
```mdx
```
**Live preview:**
---
### MCPTools
Model Context Protocol tools integration component.
```mdx
```
**Live preview:**
---
### NextSteps
Component for suggesting next steps in documentation workflows.
```mdx
```
**Live preview:**
---
## Community components
Components for community engagement and interaction.
### CommunityBanner
Community engagement banner for promoting community participation.
```mdx
Connect with the Neon community!
```
**Live preview:**
Connect with the Neon community!
---
## Usage guidelines
### When to use specialized components
- **ExternalCode**: When you need to embed code from external repositories or sources
- **Media Components**: For video tutorials, demos, or multimedia content
- **Specialized Shared Components**: For feature announcements and status updates
- **SDK Components**: For auto-generated SDK documentation
- **Utility Components**: For specialized forms and navigation elements
- **Specialized Components**: For AI-powered features and complex workflows
- **Community Components**: For community engagement and participation
### Best practices
- **Use sparingly**: These components are specialized and should be used only when appropriate
- **Test thoroughly**: Specialized components may have specific requirements or dependencies
- **Document usage**: When using specialized components, document the specific use case
- **Consider alternatives**: Always consider if a simpler component would work better
- **Follow patterns**: Use established patterns for similar functionality
### Component dependencies
Some specialized components have specific dependencies:
- **SDK Components**: Require shared content files and proper configuration
- **RequestForm**: Requires specific type configurations in the data files
- **Media Components**: May require specific video formats or hosting
- **Specialized Components**: May have AI or external service dependencies
---
## Component summary
This guide covers specialized MDX components used in specific scenarios. Each component includes:
- **MDX syntax**: Copy-paste ready code examples
- **Live rendering**: See exactly how components appear
- **Usage guidelines**: When and how to use each component
- **Dependencies**: Requirements and configurations needed
### Component categories
| **Category** | **Components** | **Use Case** |
| ------------------------------------------------------------------- | -------------------------------------------------------------------------------------- | ------------------------------------- |
| **[Code Display](#code-display)** | [ExternalCode](#externalcode) | External code embedding |
| **[Media Components](#media-components)** | [YoutubeIframe](#youtubeiframe), [Video](#video) | Multimedia content |
| **[Specialized Shared Components](#specialized-shared-components)** | [Feature Announcements](#feature-announcements), [EarlyAccessProps](#earlyaccessprops) | Feature status indicators |
| **[SDK Components](#sdk-components)** | [Getting Started](#getting-started), [SDK Type Components](#sdk-type-components) | Auto-generated SDK documentation |
| **[Utility Components](#utility-components)** | [RequestForm](#requestform), [ChatOptions](#chatoptions) | Specialized UI elements |
| **[Specialized Components](#specialized-components)** | [AIRule](#airule), [MCPTools](#mcptools), [NextSteps](#nextsteps) | Complex and specialized functionality |
| **[Community Components](#community-components)** | [CommunityBanner](#communitybanner) | Community engagement |
For commonly used components, see the [Component Guide](/docs/community/component-guide).