AI Agent Skills & MCP
SpecializedRun OSINT workflows inside Claude Code, Cursor, Ollama, or any MCP-compatible client:
35.1 MCP Servers & Skill Packs
| Resource | Type | URL |
|---|---|---|
| osint-agent-skills (author's) | 22 MCP tools + 295-line system prompt + 9 pivot playbooks | https://github.com/frangelbarrera/osint-agent-skills |
| PulseMCP | MCP server directory | https://www.pulsemcp.com |
| MCP Server Finder (Glama) | Directory | https://glama.ai/mcp/servers |
| awesome-mcp-servers | Curated list | https://github.com/punkpeye/awesome-mcp-servers |
35.2 MCP Servers for Specific OSINT Tools
| MCP Server | Wraps | URL |
|---|---|---|
| Shodan MCP | Shodan API | https://github.com/BeehiveInnovations/shodan-mcp |
| VirusTotal MCP | VT API | https://github.com/burningion/online-ophelia |
| Brave Search MCP | Brave Search | https://github.com/Anthropic/modelcontextprotocol-servers |
| Fetch MCP | Web fetcher | https://github.com/Anthropic/modelcontextprotocol-servers |
| SQLite MCP | Local DB | https://github.com/Anthropic/modelcontextprotocol-servers |
35.3 Agent Frameworks for OSINT Orchestration
| Framework | Language | URL | Highlight |
|---|---|---|---|
| AutoGPT | Python | https://github.com/Significant-Gravitas/AutoGPT | Autonomous goal-driven agents |
| CrewAI | Python | https://github.com/crewAIInc/crewAI | Role-based multi-agent |
| LangGraph | Python | https://github.com/langchain-ai/langgraph | Stateful agent graphs |
| n8n | TypeScript | https://n8n.io | Visual workflow + AI nodes |
| Dify | Python | https://dify.ai | Open-source LLM app platform |
| secure-agent-orchestrator (author's) | Python | https://github.com/frangelbarrera/secure-agent-orchestrator | Lightweight SOAR for distributed security agents |
35.4 Local & Sovereign LLMs (OPSEC for sensitive investigations)
| Tool | Type | URL |
|---|---|---|
| Ollama | Local LLM runner | https://ollama.com |
| LM Studio | Desktop GUI | https://lmstudio.ai |
| vLLM | Production server | https://github.com/vllm-project/vllm |
| Jan | Offline assistant | https://jan.ai |
35.5 Quick Start (Claude Code)
# 1. Clone the skills repo
git clone https://github.com/frangelbarrera/osint-agent-skills.git
cd osint-agent-skills
# 2. Add to .claude/settings.json
{
"mcpServers": {
"osint": {
"command": "node",
"args": ["./tools/mcp-server.js"],
"env": {
"SHODAN_KEY": "your-key",
"VT_API_KEY": "your-key",
"GITHUB_TOKEN": "your-token"
}
}
}
}
# 3. Launch Claude Code — tools will be auto-discovered