---
url: /guide/work-with-ai.md
---
# Work with AI

Thanks to Slidev being markdown-based, it works great with AI coding agents.

## MCP Server

Slidev has a built-in  that gives any MCP-capable agent structured tools to inspect, edit, reorder, and navigate your slides.

When the dev server is running, point your agent to `http://localhost:<port>/__mcp`:

```bash
# e.g. for Claude Code
claude mcp add --transport http slidev http://localhost:3030/__mcp
```

Or run a standalone stdio server that operates on the files directly:

```bash
slidev mcp slides.md
```

See  for the available tools and configuration.

## Skills

Slidev provides official [skills](https://code.claude.com/docs/en/skills) for AI coding agents, enabling them to understand Slidev's syntax, features, and best practices when helping you create presentations.

### Installation

Install the Slidev skill to your AI coding agent:

```bash
npx skills add slidevjs/slidev
```

The source code of the skill is [here](https://github.com/slidevjs/slidev/tree/main/skills/slidev).

### Example Prompts

Once installed, you can ask agents to help with various Slidev tasks:

```
Create a Slidev presentation about TypeScript generics with code examples
```

```
Add a two-column slide with code on the left and explanation on the right
```

```
Set up click animations to reveal bullet points one by one
```

```
Configure the presentation for PDF export with speaker notes
```

### What's Included

The Slidev skill provides knowledge about:

* Markdown syntax, slide separators, and frontmatter
* Click animations and transitions
* Code highlighting, Monaco editor, and magic-move
* Diagrams (Mermaid, PlantUML) and LaTeX math
* Built-in layouts and components
* Exporting and hosting options

## VS Code Extension

The  provides Language Model Tools that allow VS Code's Copilot and other AI assistants to interact with your Slidev project directly. These tools enable AI to:

* Get information about the active slide and project
* Retrieve content of specific slides
* List and search slides by title
* Navigate between slides

See  for more details.
