Documentation
Slot is an MCP (Model Context Protocol) server that enables AI assistants to help you find the perfect starter template for your next project. Through natural conversations with your AI assistant, you can discover relevant templates, understand their features, and make informed decisions about your project setup.
Documentation Structure
Documentation Structure
The documentation is organized into sections covering each aspect of Slot:
Tools Overview
Slot provides three ways to interact with starter templates, each designed for different use cases:
MCP Server
- Natural language interface
- AI-powered recommendations
- Interactive exploration
- Best for: Most users
CLI Tools
- Template scraping
- Custom analysis
- Local management
- Best for: Template maintainers
REST API
- Programmatic access
- Advanced filtering
- Integration support
- Best for: Developers building tools
Getting Started
- Quickstart - Set up the MCP server in minutes
- Quality Metrics - Understand how templates are evaluated
- Ontology - Learn about the template analysis framework
MCP Server
- Overview - Learn how the MCP server works
- Search - Discover templates through AI conversations
- Configuration - Configure the MCP server
CLI Tools
- Scraping - Add new templates to the index
- Analysis - Run template analysis
- Search - Search from the command line
- Configuration - Configure the CLI tools
API
- Overview - Learn about the REST API
- List Starters - Get and filter templates
- Get Starter - Get template details
- Get Recommendation - AI-powered template suggestions
REST API
Slot provides a RESTful API for programmatically accessing and filtering starter templates. The API follows REST conventions and returns JSON responses.
Base URL: All API endpoints are relative to:https://slotstarters.com/api
List Starters
Get a paginated list of starter templates with optional filtering.
GET /starters
View Documentation âGet Starter
Get detailed information about a specific starter template.
GET /starters/:id
View Documentation â