Ai Shopping Assistant Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Ai Shopping Assistant Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A robust, enterprise-grade integration framework that combines LangGraph (agentic workflows) with FastAPI MCP Servers (Model Context Protocol). This architecture enables LLM-powered agents to communicate securely and dynamically with downstream microservices via Server-Sent Events (SSE) transport.
The diagram below details the integration between the chatbot agent UI, the LangGraph orchestration engine, the MCP client gateway, and the FastAPI service backend.
graph TD
User([User / Operator]) <-->|Chat Interface| Gradio[Gradio Web UI]
Gradio <-->|Interacts with| LangGraphAgent[LangGraph ReAct Agent]
LangGraphAgent <-->|Invokes Tools via| MCPClient[MCP Multi-Server Client]
MCPClient <-->|SSE Transport| FastAPIMCP[FastAPI MCP Server]
FastAPIMCP <-->|Resolves Routes| APIRoutes[FastAPI Endpoints]
APIRoutes <-->|CRUD Operations| SQLASession[SQLAlchemy AsyncSession]
SQLASession <-->|Reads/Writes| SQLite[(SQLite Database)]Ensure you have uv installed.
Clone the repository and install all dependencies:
git clone https://github.com/gilish-tech/ai-shopping-assistant-mcp-server.git
cd ai-shopping-assistant-mcp-server
uv syncCreate a .env file in the project root:
# OpenAI Configuration
OPENAI_API_KEY=your-openai-api-key-here
# Optional: LangSmith Tracing & Observability
LANGCHAIN_TRACING_V2=true
LANGCHAIN_ENDPOINT=https://api.smith.langchain.com
LANGCHAIN_API_KEY=your-langsmith-api-key-here
LANGCHAIN_PROJECT=langgraph-fastapi-mcp-serverLaunch the FastAPI server which auto-exposes its routes as MCP tools:
uv run uvicorn server.main:app --host 0.0.0.0 --port 8000 --reloadLaunch the Gradio chat interface to interact with the LangGraph agent:
uv run chatbot.pyTo move this system into a production environment, follow these best practices:
uv run alembic upgrade headuvicorn with multiple workers or behind a reverse proxy (e.g., Nginx).Distributed under the MIT License. See LICENSE for details.
Maintained by gilbert (@gilish-tech).
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.