1. Conduid
  2. Developer Tools
  3. AI Agent With MCP
MCP server · Developer Tools

AI Agent With MCP

Este projeto é um playground para criar o primeiro servidor MCP (Model Context Protocol), um protocolo que permite integrar LLMs a recursos externos de forma padronizada.

Unclaimed last commit a year ago ai
41Fair

Scored 4 months ago · breakdown

About AI Agent With MCP

AI Agent With MCP is an MCP server published by zayedrais in the Developer Tools category: este projeto é um playground para criar o primeiro servidor MCP (Model Context Protocol), um protocolo que permite integrar LLMs a recursos externos de forma padronizada. It has been installed 0 times through Conduid.

The repository has 2 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx ai-agent-with-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about AI Agent With MCP

Powered by Claude · Grounded in docs

I know everything about AI Agent With MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

MCP Server with Google ADK Project

This project implements a Model Context Protocol (MCP) server using Google's Agent Development Kit (ADK) for building intelligent agents and tools. The system features multiple specialized agents that collaborate through a coordinator agent to handle different types of requests.

Details in Medium Post

Project Structure

├── agents/                    # Contains agent implementations
│   ├── coordinator_agent.py   # LLM-based intelligent request router
│   ├── data_analysis_agent.py # Agent for analyzing data files with visualization
│   ├── search_agent.py        # Agent for web searches and information retrieval
│   └── code_generator_agent.py # Agent for generating code based on descriptions
├── tools/                     # Contains tool implementations
│   ├── code_generator_tool.py # Generates code in various programming languages
│   ├── data_analysis_tool.py  # Analyzes data and creates visualizations
│   ├── data_reader_tool.py    # Reads data from various file formats
│   ├── report_generator_tool.py # Generates formatted reports
│   └── web_search_tool.py     # Performs web searches
├── input_data/                # Directory for input data files (CSV, Excel)
├── analysis_output/plots/     # Generated data visualizations
├── reports/                   # Generated analysis reports
├── generated_code/            # Generated code outputs
├── server.py                  # MCP Server implementation using FastMCP
├── requests_log.txt           # Log of requests and responses
└── README.md                  # This file

Prerequisites

  • Python 3.9+
  • Groq and OpenRouter Key

Working Flow Architecture

image

Setup

  1. Clone this repository
  2. Create a virtual environment:
    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
    
  3. Install dependencies:
    pip install -r requirements.txt
    
  4. Set up your Groq & Openrouter Key: add key in .env if available otherwise create file as
touch .env 

add key

OPENROUTER_API_KEY="ADD_Your_Key"
GROQ_API_KEY="ADD_Your_Key" 

Running the MCP Server

python server.py

This will start the MCP server on http://0.0.0.0:8080

Available Agents

Coordinator Agent

The coordinator agent uses LLM-based routing to direct requests to the most appropriate specialized agent. It analyzes the content of the request and determines which agent can best handle it.

Search Agent

Performs web searches and provides information on various topics.

Example Request:

curl -X POST http://localhost:8080/ask -H "Content-Type: application/json" -d '{"query":"What is Model Context Protocol?"}'

Data Analysis Agent

Analyzes data from various file formats (CSV, Excel) and generates reports with visualizations.

Example Request:

curl -X POST http://localhost:8080/ask -H "Content-Type: application/json" -d '{"file_path": "sales_data.xlsx","query":"make a report for these data"}'

Code Generator Agent

Generates code in various programming languages based on natural language descriptions.

Example Request:

curl -X POST http://localhost:8080/ask -H "Content-Type: application/json" -d '{"query":"Python code for fibonacci series","language":"python"}'

API Endpoints

  • /ask - General endpoint that routes to the appropriate specialized agent
  • /search - Endpoint for direct web searches
  • /analyze-data - Endpoint for data analysis
  • /generate-code - Endpoint for code generation
  • /chat/completions - Chat completion endpoint for conversational interaction

MCP Tools

The server exposes the following MCP tools:

  • ask - Routes the user's query to the most appropriate agent
  • search - Searches the web for information
  • analyze_data - Analyzes data files and generates reports with visualizations
  • generate_code - Generates code based on natural language descriptions

Extending This Project

To add new agents:

  1. Create a new file in the agents/ directory
  2. Implement the agent class with an async process() method
  3. Update the coordinator agent to recognize and route to the new agent

To add new tools:

  1. Create a new file in the tools/ directory
  2. Implement the tool functionality with comprehensive docstrings
  3. Import and use the tool in your agents

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About AI Agent With MCP

How do I install AI Agent With MCP?

Run npx ai-agent-with-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is AI Agent With MCP safe to use with an AI agent?

Its trust score is 41 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is AI Agent With MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.