Skip to main content

Stardust Docs MCP Server

The Stardust Docs MCP (Model Context Protocol) server gives AI assistants direct access to search and retrieve Stardust documentation. This means your AI coding assistant can look up Stardust features, CLI commands, and best practices without you having to copy-paste from the docs.

Why Use This?

Instant Context

Your AI assistant can search the docs and find relevant information in seconds.

Accurate Answers

Get responses grounded in official documentation, not hallucinated guesses.

Stay in Flow

No context switching to browser tabs. Ask questions right in your editor.

Always Current

The MCP server returns the latest documentation, not outdated training data.

Setup

Add the MCP server to your project with a single command:
claude mcp add --transport http --scope project stardust-docs https://docs.stardust.computer/mcp
This adds the server to your project’s .mcp.json configuration file.
Use --scope user instead of --scope project to make the MCP server available across all your projects.

Available Tools

The MCP server exposes the following tool:

SearchStardust

Search the Stardust documentation for relevant content.
ParameterTypeDescription
querystringThe search query (e.g., “task prioritization”, “CLI commands”)
Example response:
Title: task start
Link: https://docs.stardust.computer/cli/commands
Content: Mark a task as in progress. stardust task start <TASK_ID>

Title: Get Started with Stardust
Link: https://docs.stardust.computer/quickstart
Content: This guide will have you creating and managing tasks in under a minute.

Example Usage

Once configured, your AI assistant can search the docs naturally:
Claude Code using the Stardust Docs MCP server
Example prompts:
  • “How do I prioritize tasks in Stardust?”
  • “What CLI commands are available for task management?”
  • “Explain the AI triage feature”
  • “How do I configure keyboard shortcuts?”
The AI will automatically use the MCP server to search the docs and provide accurate, contextual answers.

Troubleshooting

Verify the server is configured correctly:
# For Claude Code
claude mcp list
You should see stardust-docs in the list. If not, re-run the add command.
Try more specific queries. Instead of “tasks”, try “how to create a task” or “task prioritization”.
The MCP server requires an internet connection to reach docs.stardust.computer. Check your network connection and any firewall settings.

Next Steps