# autogenstudio-skills

> MCP Client

This repository provides tools for using the Model Context Protocol (MCP), a standardized way for AI agents to discover and utilize various capabilities like web search, file system access, and database interactions.

## Overview

- **Category:** AI
- **Language:** Python
- **Stars:** 317
- **Forks:** 49
- **Owner:** madtank
- **GitHub:** https://github.com/madtank/autogenstudio-skills
- **Created:** 2024-01-30T03:15:01+00:00
- **Updated:** 2025-03-24T10:02:31+00:00
- **Source:** https://model-context-protocol.com/clients/autogen-studio-skills-model-context-protocol

## Setup

## Setup

1. **Install Requirements**:
   ```bash
   # Create and activate virtual environment
   python -m venv .env
   source .env/bin/activate  # On Windows: .env\Scripts\activate

   # Install required packages
   pip install mcp
   ```

2. **Configure MCP**:
   ```bash
   # Copy the example config
   cp mcp_config.example.json mcp_config.json

   # Edit mcp_config.json with your settings
   {
     "mcpServers": {
       "brave-search": {
         "enabled": true,
         "command": "npx",
         "args": ["-y", "@modelcontextprotocol/server-brave-search"],
         "env": {
           "BRAVE_API_KEY": "your-api-key-here"
         }
       },
       "filesystem": {
         "enabled": true,
         "command": "npx",
         "args": [
           "-y",
           "@modelcontextprotocol/server-filesystem",
           "/path/to/your/working/directory"
         ]
       }
     }
   }
   ```

3. **Start AutoGen Studio**:
   ```bash
   autogenstudio ui --port 8080
   ```

## Tools

## Available Tools

1. Brave Search (Web search capabilities)
2. Brave Search (Local business search)
3. Brave Search (Configurable result limits)
4. Brave Search (Fresh content filtering)
5. File Operations (Read/Write files)
6. File Operations (Directory operations)
7. File Operations (File searches)
8. File Operations (Metadata operations)
