1- # Agentic Tools
1+ # @ hyperweb/agentic-tools
22
3- A collection of TypeScript-based tools for building AI-powered applications using the Model Context Protocol and Mistral AI .
3+ This project implements a Model Context Protocol (MCP) server that helps you use Hyperweb platform tools better and easier with AI agents .
44
5- ## π Features
5+ ## Setup
66
7- - Built with TypeScript for type safety and better developer experience
8- - Integration with Mistral AI API
9- - Model Context Protocol SDK integration
10- - Environment-based configuration
11- - Modern development tooling (Biome, TypeScript)
7+ To run the Hyperweb MCP server using npx, use the following command:
128
13- ## π Prerequisites
14-
15- - Node.js (Latest LTS version recommended)
16- - pnpm package manager
9+ ``` bash
10+ npx -y @shopify/dev-mcp@latest
11+ ```
1712
1813## π οΈ Installation
1914
20151 . Clone the repository:
16+
2117``` bash
2218git clone https://github.com/yourusername/agentic-tools.git
2319cd agentic-tools
2420```
2521
26- 2 . Install dependencies:
22+ 1 . Install dependencies:
2723``` bash
2824pnpm install
2925```
3026
31- 3 . Set up environment variables:
27+ 1 . Set up environment variables:
3228``` bash
3329cp .env.example .env
3430```
@@ -38,23 +34,37 @@ Edit the `.env` file with your configuration values.
3834
3935### Available Scripts
4036
41- - ` pnpm build ` - Build the project
37+ - ` pnpm build ` - Build the project and copy prompts to build directory
4238- ` pnpm clean ` - Clean build artifacts
43- - ` pnpm test ` - Run tests (to be implemented)
39+ - ` pnpm test ` - Run tests
40+ - ` pnpm inspector ` - Run the MCP inspector with the server
41+ - ` pnpm format ` - Format code using Biome
42+ - ` pnpm lint ` - Lint code using Biome
43+
44+ ### Available Tools
45+
46+ The server provides the following tools:
47+
48+ | Tool Name | Description |
49+ | -----------| -------------|
50+ | starship-config-gen | Generate Starship configuration |
51+ | starship-setup | Setup Starship environment |
4452
4553### Development Tools
4654
4755- ** TypeScript** - For static typing and modern JavaScript features
4856- ** Biome** - For linting and formatting
4957- ** Model Context Protocol SDK** - For AI model interactions
50- - ** Mistral AI** - For advanced AI capabilities
5158- ** Zod** - For runtime type validation
5259
5360## π¦ Project Structure
5461
5562```
5663agentic-tools/
5764βββ src/ # Source code
65+ β βββ starship/ # Starship-related tools and prompts
66+ β βββ tools/ # Tool implementations
67+ β βββ prompts/ # Prompt templates
5868βββ build/ # Compiled output
5969βββ .env.example # Example environment variables
6070βββ biome.json # Biome configuration
@@ -71,4 +81,3 @@ This project is licensed under the ISC License - see the LICENSE file for detail
7181## π Acknowledgments
7282
7383- [ Model Context Protocol] ( https://github.com/modelcontextprotocol/sdk )
74- - [ Mistral AI] ( https://mistral.ai/ )
0 commit comments