skill-intelligence-agent
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@skill-intelligence-agentWhat skills are most relevant for a software engineer role?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Skill Intelligence Agent
A RAG-powered agent that answers questions about skills/roles by retrieving from a vector knowledge base and reasoning over it with tool-calling, exposed both as a REST API and as an MCP server.
Architecture
RAG layer (
app/rag) — Chroma vector store + sentence-transformer embeddingsAgent layer (
app/agent) — Claude tool-calling loop that queries the RAG layerMCP layer (
app/mcp) — exposes the same retrieval tool over MCP for external clientsAPI (
app/main.py) — FastAPI endpoints:/health,/ingest,/queryDeploy — Dockerized, deployed to AWS, CI/CD via GitHub Actions
Related MCP server: kb-mcp-server
Local development
pip install -r requirements.txt
cp .env.example .env # add your ANTHROPIC_API_KEY
uvicorn app.main:app --reloadDocker
docker build -t skill-intelligence-agent .
docker run -p 8000:8000 --env-file .env skill-intelligence-agentTests
pytest tests/ -vRoadmap
RAG pipeline (ingest + retrieve)
Agent tool-calling loop
MCP server exposing retrieval as a tool
Dockerfile
CI/CD (test + build + push)
AWS deployment (ECS/Lambda)
Auth + rate limiting
Demo UI / recorded walkthrough
This server cannot be deployed
Maintenance
Related MCP Connectors
Cloud or self-hosted knowledge for AI agents: hybrid search, reranking, GraphRAG, scoped MCP tools.
CareerProof MCP gives AI agents direct access to a professional-grade career and workforce intelligence platform. Two namespaces: atlas_* for HR/TA teams (candidate evaluation, batch shortlisting, competency scoring, interview generation, JD analysis, custom eval frameworks, research reports) and ceevee_* for professionals (CV optimization, career positioning, salary intelligence, market reports). Backed by RAG knowledge from 50+ premium research sources (McKinsey, BCG, HBR, Gartner, WEF)
Query InterviewFlowAI candidate and interview data from MCP-compatible AI assistants.
Search & install 6,500+ AI agent skills from skills-hub.ai inside any MCP tool.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceExposes retrieval capabilities of two RAG systems as authenticated MCP tools, allowing any MCP client to perform graph-augmented and hybrid retrieval with JWT auth.1-
- AlicenseNot gradedqualityBmaintenanceEnables semantic search over a local knowledge base using MCP tools, allowing AI clients to retrieve relevant document chunks via the search_knowledge tool.191 npm2MIT
- FlicenseNot gradedqualityCmaintenanceEnables querying company knowledge base using RAG, providing accurate answers from internal documents via MCP.-
- FlicenseAqualityCmaintenanceMCP bridge to a multimodal RAG service, enabling hybrid search and Q&A over documents with tools for knowledge base queries and health checks.4-