This project implements a Model Context Protocol (MCP) server that helps you use LaunchQL platform tools better and easier with AI agents.
To run the LaunchQL MCP server using npx, use the following command:
npx -y @launchql/mcp-server@latest
Add the following configuration. For more information, read the Cursor MCP documentation or the Claude Desktop MCP guide.
{
"mcpServers": {
"launchql-mcp-server": {
"command": "npx",
"args": ["-y", "@launchql/mcp-server@latest"]
}
}
}
On Windows, you might need to use this alternative configuration:
{
"mcpServers": {
"launchql-mcp-server": {
"command": "cmd",
"args": ["/k", "npx", "-y", "@launchql/mcp-server@latest"]
}
}
}
pnpm build
- Build the project and copy prompts to build directorypnpm clean
- Clean build artifactspnpm test
- Run testspnpm inspector
- Run the MCP inspector with the serverpnpm format
- Format code using Biomepnpm lint
- Lint code using Biome
The server provides the following tools:
Tool Name | Description |
---|---|
generateStarshipConfig | Generate Starship configuration |
verifyStarshipConfig | Verify a Starship configuration |
setupStarship | Setup Starship environment |
- TypeScript - For static typing and modern JavaScript features
- Biome - For linting and formatting
- Model Context Protocol SDK - For AI model interactions
- Zod - For runtime type validation
agentic-tools/
├── src/ # Source code
│ └── starship/ # Starship-related tools and prompts
│ ├── tools/ # Tool implementations
│ └── prompts/ # Prompt templates
├── build/ # Compiled output
├── .env.example # Example environment variables
└── biome.json # Biome configuration
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.