# Documentation

> DeployStack.io Documentation

- **Type:** MCP server
- **Install:** `agentstack add mcp-deploystackio-documentation`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [deploystackio](https://agentstack.voostack.com/s/deploystackio)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [deploystackio](https://github.com/deploystackio)
- **Source:** https://github.com/deploystackio/documentation
- **Website:** https://deploystack.io/docs

## Install

```sh
agentstack add mcp-deploystackio-documentation
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# DeployStack Documentation

This repository contains the official documentation for [DeployStack](https://docs.deploystack.io/) - MCP Management Platform with centralized credential vault, governance, and token optimization. Built with [Mintlify](https://mintlify.com), our documentation provides comprehensive guides for developers and enterprises.

Visit [docs.deploystack.io](https://docs.deploystack.io) to explore the live documentation.

## Technology Stack

- **Documentation Platform**: Mintlify
- **Content**: MDX (Markdown + React components)
- **Deployment**: Automatic deployment via Mintlify platform

## Project Structure

```text
.
├── general/               # Getting started and core concepts
│   ├── architecture.mdx   # System architecture overview
│   ├── teams.mdx          # Team management
│   ├── roles.mdx          # Role-based access control
│   └── mcp-*.mdx          # MCP server guides
├── self-hosted/           # Self-hosting guides
│   ├── quick-start.mdx    # Quick start guide
│   ├── setup.mdx          # Installation instructions
│   └── docker-compose.mdx # Docker deployment
├── development/           # Development documentation
│   ├── frontend/          # Frontend development guides
│   │   ├── index.mdx      # Frontend overview
│   │   ├── ui/            # UI system documentation
│   │   └── ...
│   ├── backend/           # Backend development guides
│   │   ├── index.mdx      # Backend overview
│   │   ├── api/           # API documentation
│   │   ├── database/      # Database guides
│   │   └── ...
│   └── satellite/         # Satellite development guides
│       ├── index.mdx      # Satellite overview
│       ├── architecture.mdx
│       └── ...
├── assets/                # Images and static assets
│   └── images/
│       ├── logo/          # Logo files
│       └── ...
├── docs.json              # Mintlify configuration
├── index.mdx              # Documentation home page
└── README.md              # This file
```

## Local Development

Mintlify provides a local development CLI for previewing documentation changes:

```bash
# Install Mintlify CLI globally (one-time setup)
npm install -g mintlify

# Start local development server
mintlify dev

# The documentation will be available at http://localhost:3000
```

The local server provides:

- Hot reloading for instant content updates
- Navigation preview
- Component rendering
- Dark/light mode testing

## Writing Documentation

### Content Format

All documentation is written in **MDX** (Markdown with JSX components):

```mdx
---
title: Your Page Title
description: A brief description of the page content
---

# Your Page Title

Write your content here using standard Markdown syntax.

Use Mintlify components for callouts and special content blocks.

## Section Header

More content here...
```

### Mintlify Components

Mintlify provides built-in components for enhanced documentation:

**Callouts:**

```mdx
General information
Important information
Helpful tips
Important warnings
Success status
Critical warnings
```

**Code Groups:**

```mdx

`\`\`bash macOS/Linux
npm install
`\`\`

`\`\`powershell Windows
npm install
`\`\`

```

**Cards:**

```mdx

  
    Begin your DeployStack journey
  
  
    Explore the API documentation
  

```

**Steps:**

```mdx

  
    Run `npm install` to install required packages
  
  
    Set up your environment variables
  
  
    Run `npm run dev` to start the development server
  

```

### Navigation Configuration

Navigation is controlled via `docs.json`:

- **Tabs**: Top-level navigation sections (General, Self Hosted, Frontend Development, etc.)
- **Groups**: Subsections within each tab
- **Pages**: Individual documentation pages

To add a new page:

1. Create the `.mdx` file in the appropriate directory
2. Add the page path to `docs.json` under the relevant group
3. Test locally with `mintlify dev`

### Content Guidelines

**File Naming:**

- Use kebab-case: `my-new-page.mdx`
- Index files represent the directory: `index.mdx`

**Links:**

- Use absolute paths from documentation root: `/development/backend/api/index`
- Mintlify automatically handles `.mdx` extensions

**Images:**

- Store in `assets/images/` with logical subdirectories
- Reference with absolute paths: `/assets/images/logo/dark.webp`
- Optimize images before committing (compress file sizes)

**Frontmatter:**

```yaml
---
title: Page Title (required)
description: Page description for SEO (required)
---
```

## Asset Management

### Images and Diagrams

1. **Diagrams**: Create with [draw.io](https://app.diagrams.net/)
2. **Export Format**: PNG or WebP
3. **Optimization**: Compress images before committing
4. **Location**: Store in `assets/images/` with appropriate subdirectories

## Contributing Guidelines

### Workflow

1. **Fork or Branch**: Create a feature branch from `main`
2. **Write Content**: Add or update documentation in MDX format
3. **Test Locally**: Run `mintlify dev` to preview changes
4. **Submit PR**: Create a pull request to `main` branch
5. **Review**: Wait for review and address feedback
6. **Merge**: Changes are automatically deployed after merge

### Pull Request Guidelines

- Write clear commit messages
- Test all links and navigation
- Verify code examples are correct
- Check for spelling and grammar
- Ensure images load correctly
- Preview on mobile and desktop layouts

### Documentation Standards

**Writing Style:**

- Write in clear, concise language
- Use active voice
- Address the reader directly ("you")
- Avoid jargon without explanation
- Include code examples where helpful

**Code Examples:**

- Include complete, working examples
- Add comments for clarity
- Show expected output when relevant
- Test all code before committing

**Structure:**

- Start with overview/introduction
- Progress from basic to advanced
- Use descriptive section headers
- Include related documentation links at the end

## Deployment

### Automatic Deployment

Mintlify automatically deploys documentation when changes are merged to `main`:

- **Trigger**: Push or merge to `main` branch
- **Build**: Mintlify builds the documentation
- **Deploy**: Changes go live at docs.deploystack.io
- **CDN**: Content served via Mintlify's global CDN

### Branch Strategy

- **`main`**: Production branch that deploys to docs.deploystack.io
- **Feature Branches**: Create from `main` for new content or updates
- **Pull Requests**: All changes must go through PR review

## Need Help?

- 📚 **Documentation**: [docs.deploystack.io](https://docs.deploystack.io)
- 💬 **Discord**: [Join our community](https://discord.gg/42Ce3S7b3b)
- 🐛 **Issues**: [GitHub Issues](https://github.com/deploystackio/documentation/issues)
- 🌐 **Website**: [deploystack.io](https://deploystack.io)
- 🚀 **Dashboard**: [cloud.deploystack.io](https://cloud.deploystack.io)

## Links

- [Mintlify Documentation](https://mintlify.com/docs)
- [MDX Documentation](https://mdxjs.com/)
- [DeployStack Main Repository](https://github.com/deploystackio/deploystack)
- [DeployStack Changelog](https://deploystack.io/changelog)

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [deploystackio](https://github.com/deploystackio)
- **Source:** [deploystackio/documentation](https://github.com/deploystackio/documentation)
- **License:** MIT
- **Homepage:** https://deploystack.io/docs

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-deploystackio-documentation
- Seller: https://agentstack.voostack.com/s/deploystackio
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
