{
  "markdown": "<!-- mcp-name: io.github.omniologynow-rgb/scout-intel-mcp -->\n<p align=\"center\">\n  <strong>Scout MCP</strong><br>\n  Business & Market Intelligence for AI Agents\n</p>\n\n<p align=\"center\">\n  <a href=\"https://www.python.org/downloads/\"><img src=\"https://img.shields.io/badge/python-3.11+-blue.svg\" alt=\"Python 3.11+\"></a>\n  <a href=\"https://gofastmcp.com\"><img src=\"https://img.shields.io/badge/FastMCP-3.x-00d4aa.svg\" alt=\"FastMCP 3.x\"></a>\n  <a href=\"https://opensource.org/licenses/MIT\"><img src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" alt=\"MIT License\"></a>\n  <img src=\"https://img.shields.io/badge/tools-6-cyan.svg\" alt=\"6 Tools\">\n  <img src=\"https://img.shields.io/badge/data_sources-5+-orange.svg\" alt=\"5+ Data Sources\">\n  <a href=\"https://pypi.org/project/scout-intel-mcp/\"><img src=\"https://img.shields.io/pypi/v/scout-intel-mcp?color=%2334D058&label=pypi\" alt=\"PyPI version\"></a>\n  <a href=\"https://pepy.tech/project/scout-intel-mcp\"><img src=\"https://static.pepy.tech/badge/scout-intel-mcp/month\" alt=\"PyPI Downloads/month\"></a>\n  <a href=\"https://mcpize.com/mcp/scout-intel\"><img src=\"https://img.shields.io/badge/MCPize-blue?label=marketplace\" alt=\"MCPize\"></a>\n</p>\n\n---\n\n> **Google for AI agents** — instead of web pages, it returns clean, structured JSON that agents can reason over.\n\nScout MCP gives any AI agent instant access to structured business intelligence, market research, and competitive analysis. It aggregates data from **DuckDuckGo, NewsAPI, Wikipedia, web scraping, and social profiles** into Pydantic-validated JSON responses with **per-source confidence breakdowns** and **data quality grades**.\n\n---\n\n## Table of Contents\n\n- [Quick Install](#quick-install)\n- [The 6 Intelligence Tools](#the-6-intelligence-tools)\n- [Data Quality Grades](#data-quality-grades)\n- [Confidence Breakdown](#confidence-breakdown)\n- [Full API Reference](#full-api-reference)\n- [Example Responses](#example-responses)\n- [Architecture](#architecture)\n- [Configuration](#configuration)\n- [Pricing & Rate Limits](#pricing--rate-limits)\n- [Self-Hosting](#self-hosting)\n- [Docker](#docker)\n- [Tech Stack](#tech-stack)\n- [Data Sources](#data-sources)\n- [Contributing](#contributing)\n\n---\n\n## Quick Install\n\n### Claude Desktop\n\nAdd to `~/Library/Application Support/Claude/claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"scout-mcp\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"scout_mcp.mcp_server\"],\n      \"cwd\": \"/path/to/scout-mcp/src\",\n      \"env\": {\n        \"NEWS_API_KEY\": \"your-newsapi-key\"\n      }\n    }\n  }\n}\n```\n\n### Cursor\n\nAdd to Cursor Settings > MCP:\n\n```json\n{\n  \"scout-mcp\": {\n    \"command\": \"python\",\n    \"args\": [\"-m\", \"scout_mcp.mcp_server\"],\n    \"cwd\": \"/path/to/scout-mcp/src\",\n    \"env\": {\n      \"NEWS_API_KEY\": \"your-newsapi-key\"\n    }\n  }\n}\n```\n\n### VS Code (Copilot MCP)\n\nAdd to `.vscode/mcp.json`:\n\n```json\n{\n  \"servers\": {\n    \"scout-mcp\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"scout_mcp.mcp_server\"],\n      \"cwd\": \"/path/to/scout-mcp/src\",\n      \"env\": {\n        \"NEWS_API_KEY\": \"your-newsapi-key\"\n      }\n    }\n  }\n}\n```\n\n### pip (self-hosted)\n\n```bash\npip install scout-mcp\nscout-mcp  # starts STDIO server for MCP clients\n```\n\n---\n\n## The 6 Intelligence Tools\n\n| # | Tool | What It Does | Tier |\n|---|------|-------------|------|\n| 1 | `scout_company` | Structured intel on any company: industry, funding, tech stack, competitors, news, key people | Free |\n| 2 | `scout_market` | Market research: size, CAGR, key players, trends, growth drivers, risks | Free |\n| 3 | `scout_competitors` | Competitor analysis: positioning, pricing, strengths, weaknesses, differentiators | Free |\n| 4 | `scout_trends` | Trend tracking: sentiment analysis, key developments, trending direction, related topics | Free |\n| 5 | `scout_product` | Product intelligence: pricing, ratings, features, alternatives, recent updates | Free |\n| 6 | `scout_person` | Public figure research: role, background, achievements, social profiles | **Pro** |\n\n---\n\n## Data Quality Grades\n\nEvery response includes a **`data_quality_grade`** — a letter grade that lets agents instantly assess intelligence reliability:\n\n| Grade | Confidence | Meaning |\n|-------|-----------|---------|\n| **A+** | 90%+ | Exceptional — multiple high-quality sources confirmed |\n| **A** | 80-90% | High — strong multi-source corroboration |\n| **B** | 65-80% | Good — solid data from key sources |\n| **C** | 45-65% | Fair — limited sources, gaps likely |\n| **D** | 25-45% | Low — sparse data, treat with caution |\n| **F** | <25% | Insufficient — minimal data available |\n\n### How Agents Should Use Grades\n\n```python\nresult = scout_company(\"Stripe\")\n\nif result[\"data_quality_grade\"] in (\"A+\", \"A\"):\n    # High confidence — safe to make decisions on this data\n    proceed_with_analysis(result)\nelif result[\"data_quality_grade\"] == \"B\":\n    # Good but verify key claims\n    proceed_with_caveats(result)\nelse:\n    # C/D/F — supplement with additional sources\n    request_more_data(result)\n```\n\n---\n\n## Confidence Breakdown\n\nBeyond the letter grade, every response includes a **`confidence_breakdown`** dict showing per-source reliability:\n\n```json\n{\n  \"confidence\": 0.86,\n  \"data_quality_grade\": \"A\",\n  \"confidence_breakdown\": {\n    \"duckduckgo\": {\n      \"score\": 0.60,\n      \"reason\": \"8 results found\"\n    },\n    \"company_website\": {\n      \"score\": 0.90,\n      \"reason\": \"scraped stripe.com, 3 data points extracted\"\n    },\n    \"wikipedia\": {\n      \"score\": 0.90,\n      \"reason\": \"page found, structured data extracted\"\n    },\n    \"newsapi\": {\n      \"score\": 0.90,\n      \"reason\": \"6 articles found\"\n    },\n    \"competitor_extraction\": {\n      \"score\": 0.80,\n      \"reason\": \"5 competitors identified\"\n    }\n  }\n}\n```\n\n### Source Weights\n\nDifferent sources carry different weights in the overall confidence calculation:\n\n| Source | Weight | Why |\n|--------|--------|-----|\n| Wikipedia | 3x | Curated, structured, authoritative |\n| NewsAPI | 2x | Fresh, professional journalism |\n| Company Website | 2x | First-party data, most current |\n| DuckDuckGo Search | 1x | Broad but variable quality |\n| Competitor Extraction | 1x | Derived analysis |\n| Social Profiles | 1x | Supplementary |\n\n---\n\n## Full API Reference\n\n### Base URL\n\n```\nPOST /api/scout/{tool_name}\n```\n\n### Authentication\n\nPass your API key via the `X-Api-Key` header:\n\n```bash\ncurl -X POST /api/scout/company \\\n  -H \"X-Api-Key: your-key-here\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"Stripe\"}'\n```\n\nNo key = free tier (50 requests/day).\n\n### Health & Info\n\n| Endpoint | Method | Description |\n|----------|--------|-------------|\n| `/api/` | GET | Service info + list of tools |\n| `/api/health` | GET | Health check + DuckDuckGo backoff status |\n| `/api/tools` | GET | All tools with params, tiers, and grade descriptions |\n| `/api/cache/stats` | GET | Cache hit/miss statistics |\n| `/api/cache/clear` | POST | Clear all cached responses |\n\n### Tool Endpoints\n\n#### `POST /api/scout/company`\n\nResearch any company.\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `name` | string | Yes | Company name (e.g., \"Stripe\", \"OpenAI\") |\n| `domain` | string | No | Company domain (e.g., \"stripe.com\"). Auto-detected if omitted. |\n\n**Response fields:** `name`, `domain`, `description`, `industry`, `founded`, `headquarters`, `employee_range`, `funding`, `tech_stack`, `social_profiles`, `recent_news`, `top_competitors`, `key_people`, `confidence`, `confidence_breakdown`, `data_quality_grade`, `data_freshness`, `sources_used`, `sources_failed`\n\n---\n\n#### `POST /api/scout/market`\n\nResearch any market or industry.\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `query` | string | Yes | Market to research (e.g., \"AI SaaS\", \"electric vehicles\") |\n| `depth` | string | No | `\"summary\"` (default) or `\"detailed\"` |\n\n**Response fields:** `market_name`, `query`, `depth`, `market_size`, `market_size_projections`, `cagr`, `key_players`, `trends`, `growth_drivers`, `risks`, `source_links`, `confidence`, `confidence_breakdown`, `data_quality_grade`\n\n---\n\n#### `POST /api/scout/competitors`\n\nFind and analyze competitors.\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `company_or_product` | string | Yes | Company or product name (e.g., \"Notion\") |\n| `max` | integer | No | Max competitors to return (default 10) |\n\n**Response fields:** `target`, `competitors` (array of `{name, domain, positioning, pricing, strengths, weaknesses, key_differentiator}`), `market_positioning_summary`, `confidence`, `confidence_breakdown`, `data_quality_grade`\n\n---\n\n#### `POST /api/scout/trends`\n\nTrack trends and sentiment.\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `topic` | string | Yes | Topic to track (e.g., \"generative AI\") |\n| `timeframe` | string | No | `\"1d\"`, `\"7d\"` (default), `\"30d\"`, `\"1y\"` |\n\n**Response fields:** `topic`, `timeframe`, `sentiment` (`{score, label}`), `trending_direction`, `key_developments`, `related_topics`, `social_buzz`, `confidence`, `confidence_breakdown`, `data_quality_grade`\n\n---\n\n#### `POST /api/scout/product`\n\nGet intelligence on any product.\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `name` | string | Yes | Product name (e.g., \"Slack\", \"Vercel\") |\n\n**Response fields:** `name`, `category`, `description`, `pricing`, `ratings`, `features`, `ideal_for`, `alternatives`, `recent_updates`, `confidence`, `confidence_breakdown`, `data_quality_grade`\n\n---\n\n#### `POST /api/scout/person` (PRO)\n\nResearch a public figure. **Requires Pro tier or higher.**\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `name` | string | Yes | Person's name (e.g., \"Sam Altman\") |\n| `company` | string | No | Company context (e.g., \"OpenAI\") |\n\n**Response fields:** `name`, `current_role`, `company`, `location`, `background_summary`, `social_profiles`, `recent_activity`, `notable_achievements`, `confidence`, `confidence_breakdown`, `data_quality_grade`\n\nReturns HTTP 403 for free tier users.\n\n---\n\n## Example Responses\n\n### scout_company(\"Stripe\")\n\n```json\n{\n  \"name\": \"Stripe\",\n  \"domain\": \"stripe.com\",\n  \"description\": \"Stripe, Inc. is an Irish-American multinational financial services and software as a service company...\",\n  \"industry\": \"Software & Technology\",\n  \"founded\": \"2010\",\n  \"headquarters\": \"San Francisco\",\n  \"top_competitors\": [\"PayPal\", \"Adyen\", \"Square\", \"Braintree\", \"Checkout.com\"],\n  \"tech_stack\": [\"Next.js\", \"React\"],\n  \"recent_news\": [\n    {\"headline\": \"Stripe launches AI billing features\", \"source\": \"TechCrunch\", \"date\": \"2026-04-08\"},\n    {\"headline\": \"Stripe revenue grows 30% in 2025\", \"source\": \"Bloomberg\", \"date\": \"2026-03-15\"}\n  ],\n  \"confidence\": 0.86,\n  \"data_quality_grade\": \"A\",\n  \"confidence_breakdown\": {\n    \"duckduckgo\": {\"score\": 0.60, \"reason\": \"8 results found\"},\n    \"company_website\": {\"score\": 0.90, \"reason\": \"scraped stripe.com, 3 data points extracted\"},\n    \"wikipedia\": {\"score\": 0.90, \"reason\": \"page found, structured data extracted\"},\n    \"newsapi\": {\"score\": 0.90, \"reason\": \"6 articles found\"},\n    \"competitor_extraction\": {\"score\": 0.80, \"reason\": \"5 competitors identified\"}\n  },\n  \"data_freshness\": \"2026-04-12T12:00:00Z\"\n}\n```\n\n### scout_trends(\"generative AI\", timeframe=\"7d\")\n\n```json\n{\n  \"topic\": \"generative AI\",\n  \"timeframe\": \"7d\",\n  \"sentiment\": {\"score\": 0.72, \"label\": \"positive\"},\n  \"trending_direction\": \"up\",\n  \"key_developments\": [\n    {\n      \"headline\": \"OpenAI releases GPT-5.2 with reasoning capabilities\",\n      \"date\": \"2026-04-10\",\n      \"impact_level\": \"high\",\n      \"source\": \"The Verge\"\n    }\n  ],\n  \"related_topics\": [\"Large Language Models\", \"AI Safety\", \"Enterprise AI\"],\n  \"confidence\": 0.83,\n  \"data_quality_grade\": \"A\",\n  \"confidence_breakdown\": {\n    \"duckduckgo_news\": {\"score\": 0.90, \"reason\": \"10 news articles found\"},\n    \"newsapi\": {\"score\": 0.90, \"reason\": \"4 articles found\"},\n    \"web_search\": {\"score\": 0.50, \"reason\": \"5 web results for context\"}\n  }\n}\n```\n\n### scout_competitors(\"Notion\")\n\n```json\n{\n  \"target\": \"Notion\",\n  \"competitors\": [\n    {\n      \"name\": \"Obsidian\",\n      \"domain\": \"obsidian.md\",\n      \"positioning\": \"Privacy-focused local-first knowledge base with Markdown\",\n      \"strengths\": [\"Open source\", \"Free tier available\", \"Offline support\"],\n      \"key_differentiator\": \"Local-first with plain Markdown files\"\n    },\n    {\n      \"name\": \"Coda\",\n      \"positioning\": \"All-in-one doc with app-building capabilities\",\n      \"strengths\": [\"AI-powered features\"],\n      \"key_differentiator\": \"Document-as-app paradigm\"\n    },\n    {\n      \"name\": \"Logseq\",\n      \"positioning\": \"Open-source outliner with bidirectional links\"\n    }\n  ],\n  \"market_positioning_summary\": \"Found 7 competitors for Notion. Top alternatives: Obsidian, Coda, Logseq, Anytype, AppFlowy.\",\n  \"confidence\": 0.65,\n  \"data_quality_grade\": \"B\",\n  \"confidence_breakdown\": {\n    \"search_Notion alternative\": {\"score\": 0.70, \"reason\": \"8 results for 'Notion alternatives'\"},\n    \"search_Notion vs competi\": {\"score\": 0.60, \"reason\": \"6 results for 'Notion vs competitors'\"},\n    \"extraction_quality\": {\"score\": 0.86, \"reason\": \"7 competitors extracted and enriched\"}\n  }\n}\n```\n\n---\n\n## Architecture\n\n```\n                      +------------------+\n                      |  AI Agent        |\n                      |  (Claude, etc.)  |\n                      +--------+---------+\n                               |\n                    STDIO / SSE / REST\n                               |\n              +----------------+----------------+\n              |          Scout MCP              |\n              |  FastMCP 3.x + FastAPI REST     |\n              +----------------+----------------+\n              |  Cache (24h TTL, in-memory)     |\n              |  Auth (API key, tier limits)     |\n              |  Rate Limiter (per-key, daily)   |\n              +----+--------+--------+----------+\n                   |        |        |\n          +--------+  +-----+--+  +--+--------+\n          | DuckDuckGo| | NewsAPI | | Wikipedia |\n          | (free)    | | (.org)  | | (free)    |\n          +-----------+ +---------+ +-----------+\n                   |                    |\n          +--------+--------+  +-------+-------+\n          | Web Scraper     |  | Social Profile |\n          | (httpx + BS4)   |  | Detection      |\n          +----------------+  +----------------+\n```\n\n### Exponential Backoff (DuckDuckGo)\n\nDuckDuckGo's free API has rate limits. Scout MCP handles this with adaptive backoff:\n\n```\nSuccess  : interval = 2s (base)\nFailure 1: interval = 4s\nFailure 2: interval = 8s\nFailure 3: interval = 16s\nFailure 4: interval = 32s\nFailure 5: interval = 48s (cap)\nNext success: interval resets to 2s\n```\n\nEach call also retries once before giving up. Monitor backoff status at `GET /api/health`.\n\n### Competitor Extraction Engine\n\nThe competitor extraction uses 6 regex pattern categories with 350+ stop words:\n\n1. **VS patterns** — \"X vs Y\" matching\n2. **Comma/and-separated lists** — \"alternatives include X, Y, and Z\"\n3. **Numbered/bulleted lists** — \"1. Asana 2. Monday 3. ClickUp\"\n4. **Header patterns** — \"Asana -- project management tool\"\n5. **Contextual patterns** — \"like X\" or \"such as X\"\n6. **Title-cased names** — capitalized product names near competitor context\n\nMulti-word validators reject: article titles, verb-prefixed names, pronoun-prefixed names, role-suffixed names, probable person names, mega-corp parent names, and platform names.\n\n---\n\n## Configuration\n\n### Environment Variables\n\n| Variable | Required | Default | Description |\n|----------|----------|---------|-------------|\n| `NEWS_API_KEY` | Yes | — | NewsAPI.org API key ([get one free](https://newsapi.org/register)) |\n| `SCOUT_API_KEY` | No | — | Master API key (auto-assigned \"scale\" tier) |\n| `MONGO_URL` | Auto | — | MongoDB connection string (for REST API server) |\n| `DB_NAME` | Auto | — | MongoDB database name |\n| `CORS_ORIGINS` | No | `*` | Allowed CORS origins |\n\n### Cache Settings\n\nResponses are cached for **24 hours** in-memory (dict). Cache stats and clear endpoints:\n\n```bash\n# Check cache stats\ncurl /api/cache/stats\n\n# Clear all cache\ncurl -X POST /api/cache/clear\n```\n\n---\n\n## Pricing & Rate Limits\n\n| Tier | Price | Daily Limit | Tools | Features |\n|------|-------|-------------|-------|----------|\n| **Free** | $0/mo | 50 requests | 5 of 6 | Summary depth, basic grades |\n| **Pro** | $29/mo | 1,000 requests | All 6 | + `scout_person` + detailed market reports |\n| **Scale** | $99/mo | 10,000 requests | All 6 | Everything + priority support |\n\nRate limit info is included in every response's `_meta` field:\n\n```json\n{\n  \"_meta\": {\n    \"tier\": \"free\",\n    \"remaining\": 47\n  }\n}\n```\n\n---\n\n## Self-Hosting\n\n### Local Development\n\n```bash\n# Clone and install\ngit clone https://github.com/your-org/scout-mcp.git\ncd scout-mcp/backend\npip install -e \".[dev,server]\"\n\n# Set up environment\necho \"NEWS_API_KEY=your-key\" > .env\n\n# Run MCP server (STDIO for Claude Desktop)\ncd src && python -m scout_mcp.mcp_server\n\n# Run REST API server\nuvicorn server:app --host 0.0.0.0 --port 8001 --reload\n\n# Inspect with MCP Inspector\nfastmcp inspect src/scout_mcp/mcp_server.py\n```\n\n### Running Tests\n\n```bash\n# Test the API\ncurl -X POST http://localhost:8001/api/scout/company \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"OpenAI\"}'\n\n# Check health + backoff status\ncurl http://localhost:8001/api/health\n\n# List all tools\ncurl http://localhost:8001/api/tools\n```\n\n---\n\n## Docker\n\n```dockerfile\nFROM python:3.12-slim\nWORKDIR /app\nRUN apt-get update && apt-get install -y --no-install-recommends gcc libxml2-dev libxslt1-dev && rm -rf /var/lib/apt/lists/*\nCOPY pyproject.toml .\nCOPY src/ src/\nRUN pip install --no-cache-dir .\nEXPOSE 8001\nCMD [\"python\", \"-c\", \"from scout_mcp.mcp_server import mcp; mcp.run(transport='sse', port=8001)\"]\n```\n\n```bash\n# Build and run\ndocker build -t scout-mcp .\ndocker run -p 8001:8001 -e NEWS_API_KEY=your-key scout-mcp\n```\n\n---\n\n## Tech Stack\n\n| Component | Technology | Purpose |\n|-----------|-----------|---------|\n| MCP Framework | FastMCP 3.x | Tool registration, STDIO/SSE transport |\n| REST API | FastAPI | HTTP endpoints for testing |\n| HTTP Client | httpx | Async web scraping |\n| HTML Parser | BeautifulSoup4 + lxml | Structured data extraction |\n| Search | DuckDuckGo (ddgs) | Free web + news search |\n| News | NewsAPI.org | Professional news articles |\n| Knowledge | Wikipedia API | Structured background data |\n| Validation | Pydantic 2.x | Response model validation |\n| Caching | In-memory dict (24h TTL) | Response caching |\n| Server | uvicorn | ASGI production server |\n\n---\n\n## Data Sources\n\n| Source | API Key? | Cost | Rate Limit | Reliability |\n|--------|----------|------|------------|-------------|\n| DuckDuckGo Search | No | Free | Soft limits (backoff) | Variable |\n| DuckDuckGo News | No | Free | Soft limits (backoff) | Variable |\n| NewsAPI.org | Yes | Free tier | 100 req/day | High |\n| Wikipedia API | No | Free | Unlimited (polite) | Very High |\n| Web Scraping (httpx) | No | Free | Per-site limits | Medium |\n| Social Profile Detection | No | Free | Via DuckDuckGo | Variable |\n\n### Future Sources (Planned)\n\n- Crunchbase API (funding data)\n- SimilarWeb API (traffic data)\n- GitHub API (developer tools)\n- SEMrush API (SEO data)\n\n---\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch: `git checkout -b feature/my-feature`\n3. Install dev dependencies: `pip install -e \".[dev]\"`\n4. Make your changes\n5. Run tests: `pytest`\n6. Submit a pull request\n\n### Adding a New Data Source\n\n1. Create `src/scout_mcp/sources/your_source.py`\n2. Implement async functions that return structured data\n3. Add the source to relevant tools in `src/scout_mcp/tools/`\n4. Add per-source confidence scoring\n5. Update this README\n\n### Adding a New Tool\n\n1. Create `src/scout_mcp/tools/your_tool.py`\n2. Add a Pydantic model in `models.py` (include `confidence_breakdown` and `data_quality_grade`)\n3. Register in `mcp_server.py` with `@mcp.tool()`\n4. Add REST endpoint in `server.py`\n5. Update this README\n\n---\n\n## License\n\nMIT\n\n---\n\n<p align=\"center\">\n  Built with FastMCP, httpx, BeautifulSoup4, Pydantic<br>\n  <em>Scout MCP v0.1.0</em>\n</p>\n\n---\n\n<p align=\"center\">\n  🚀 Also check out <strong><a href=\"https://github.com/omniologynow-rgb/profitspot-mcp\">ProfitSpot MCP</a></strong> — cross-chain DeFi intelligence for AI agents. Risk-scored yields, Monte Carlo simulations, whale tracking across 86 chains.\n</p>\n",
  "bytes": 20629,
  "sha": "e10246a2b8d91f580be12ea0c9347b6c712cbffa0a2bc831c60bf73a5965a0e2",
  "repo_slug": "omniologynow-rgb/scout-intel-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_omniologynow_rgb_scout_intel_m_f35642d8/readme"
}