drio
Open app

StrawHat AI Development Repository

Source

I am doing rapid R&D using AI, AI Agents, Claude MCP Servers and VS Code. My findings will go here. I hope you get inspired and build epic features with the tools in this Github.

Catalog onlyCatalog onlySTDIO

Overview

StrawHat AI Development Repository is a platform for rapid research and development using AI technologies, including AI agents and Claude MCP servers, aimed at inspiring developers to create innovative features.

To use the repository, clone it from GitHub, set up your environment using Docker, and explore the various AI tools and agents provided.

  • Integration with multiple AI models and agents. - Easy setup with Docker for hosting environments. - AI Toolkit for Visual Studio Code to facilitate AI app development.
  1. Developing AI applications using generative AI models.
  2. Testing AI agents in a local or cloud environment.
  3. Rapid prototyping of AI features and tools.

Add to your AI client

Use these steps to connect StrawHat AI Development Repository in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "strawhatai-dev-strawhatai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-strawhatai-dev-strawhatai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "strawhatai-dev-strawhatai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-strawhatai-dev-strawhatai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "strawhatai-dev-strawhatai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-strawhatai-dev-strawhatai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "strawhatai-dev-strawhatai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-strawhatai-dev-strawhatai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "strawhatai-dev-strawhatai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-strawhatai-dev-strawhatai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "strawhatai-dev-strawhatai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-strawhatai-dev-strawhatai"
      ]
    }
  }
}

FAQ

What technologies are used in this repository?

The repository utilizes AI agents, Claude MCP servers, and various AI models integrated with Docker and Visual Studio Code.

Is there documentation available for setup?

Yes! Detailed setup instructions for Docker on different operating systems are provided in the repository.

Can I contribute to this project?

Yes! Contributions are welcome, and you can submit issues or pull requests on GitHub.