Skip to main content
Glama

scout-mcp

An MCP server that searches 21 platforms in parallel and returns structured JSON. Built with the Model Context Protocol SDK.

Connect it to Claude Desktop, VS Code, Cursor, or any MCP client and search code registries, academic papers, social platforms, and tech blogs from a single tool call.

Tools

Tool

Source

Notes

hackernews_search

Hacker News (Algolia)

Stories, comments, polls

github_search

GitHub

Repositories by keyword

github_repo_info

GitHub

Single repo details

npm_search

npm Registry

Packages

pypi_search

PyPI

Python packages

producthunt_search

Product Hunt

Products by topic

x_search

X / Twitter

AI-powered via xAI Grok (requires XAI_API_KEY)

devto_search

Dev.to

Articles

hashnode_search

Hashnode

Articles (GraphQL)

lobsters_search

Lobste.rs

Stories

stackexchange_search

StackExchange

Q&A across all sites

arxiv_search

ArXiv

Academic papers

reddit_search

Reddit

Posts and comments

youtube_search

YouTube

Videos (requires YOUTUBE_API_KEY)

zenn_search

Zenn

Japanese tech articles

qiita_search

Qiita

Japanese tech articles

semantic_scholar_search

Semantic Scholar

Academic papers

lemmy_search

Lemmy

Fediverse posts

gitlab_search

GitLab

Projects

bazaar_search

x402 Bazaar

x402 API directory

scout_report

Multi-source

Parallel search across selected sources

Related MCP server: research-dispatcher-mcp

Quick start

Claude Desktop / VS Code / Cline

git clone https://github.com/bartonguestier1725-collab/scout-mcp.git
cd scout-mcp && npm install && npm run build

Add to your MCP client config:

{
  "mcpServers": {
    "scout": {
      "command": "node",
      "args": ["/absolute/path/to/scout-mcp/build/index.js"]
    }
  }
}

Docker

docker build -t scout-mcp .
docker run -i scout-mcp

The Dockerfile builds a minimal node:24-alpine image that runs the MCP server over stdio.

Configuration

All configuration is via environment variables. Most tools work without any keys. Optional keys unlock additional sources or raise rate limits.

Variable

Required

Description

XAI_API_KEY

For x_search

xAI API key for X/Twitter search

GITHUB_TOKEN

Recommended

Raises GitHub rate limit

YOUTUBE_API_KEY

For youtube_search

YouTube Data API v3 key

PH_CLIENT_ID / PH_CLIENT_SECRET

For producthunt_search

Product Hunt API credentials

REDDIT_CLIENT_ID / REDDIT_CLIENT_SECRET

For reddit_search

Reddit API credentials

QIITA_TOKEN

Optional

Raises Qiita rate limit

S2_API_KEY

Optional

Semantic Scholar dedicated rate limit

SE_API_KEY

Optional

StackExchange dedicated rate limit

How it works

Each tool makes a direct API call to its source, parses the response, and returns normalized JSON with consistent fields (title, url, source, created_at, etc.). The scout_report tool runs multiple searches in parallel using Promise.allSettled, so one source failing doesn't block the others.

Transport: stdio (standard MCP transport). The server reads JSON-RPC messages from stdin and writes responses to stdout.

HTTP mode

scout-mcp also runs as a paid HTTP API at https://scout.hugen.tokyo via the x402 protocol (USDC micropayments on Base). This mode uses the same tool implementations but exposes them as REST endpoints with payment middleware.

License

MIT

Available Tools

21 tools
github_repo_infoA

Get detailed information about a specific GitHub repository: stars, forks, contributors, releases, license, topics, and more.

ParametersJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner (user or org)
repoYesRepository name
include_contributorsNoInclude top 10 contributors
include_releasesNoInclude 5 most recent releases

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It correctly implies a read-only operation by listing fetched data and uses conditional boolean parameters. However, it does not mention rate limiting, authentication, or any potential side effects, which is acceptable for a typical read-only data retrieval tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that lists key functionalities. It is front-loaded and contains no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is relatively simple with four parameters, all documented. The description lists the key data fields returned. Since there is no output schema, the description compensates by summarizing the output. It is fully adequate for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 100% description coverage, so all parameters are documented in the schema. The description adds high-level context by listing data fields but does not add syntax or format details beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly uses 'Get detailed information' as the verb and clearly identifies the resource ('specific GitHub repository'). It lists specific data fields (stars, forks, contributors, releases, license, topics) and distinguishes itself from sibling tools like 'github_search', which presumably searches for repositories.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving repo details, but it does not explicitly state when to use this tool versus alternatives. Given sibling tools like 'github_search', 'scout_report', and others, there is no guidance on choosing this tool over them.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scout_reportA

Run a multi-source intelligence report. Searches across 18 sources (HN, GitHub, npm, PyPI, X, Product Hunt, Dev.to, Hashnode, Lobste.rs, StackExchange, ArXiv, Reddit, YouTube, Zenn, Qiita, Semantic Scholar, Lemmy, GitLab) in parallel. Use 'focus' to control source selection: 'balanced' (14 free APIs), 'trending' (HN+X+PH+Dev.to+Lobsters), 'comprehensive' (all 18). Or specify exact sources. X search uses xAI Grok API (~$0.005/call). Reddit requires API keys. YouTube requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query to scout across sources
sourcesNoSpecific sources to search (overrides focus)
focusNoPreset: balanced=14 free APIs, trending=HN+X+PH+Dev.to+Lobsters, comprehensive=all 18balanced
per_pageNoResults per source

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must fully disclose behavior. It does so by stating parallel execution across 18 sources, cost for X search ($0.005/call), dependency on API keys (Reddit, YouTube), and free vs paid sources.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise, front-loaded with key action and scope, then efficient detail on sources, focus options, and cost/API key notes. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description fully covers what the tool does, how to use it (presets vs exact sources), cost implications, and dependencies. Provides enough context for an AI agent to decide when to use this versus single-source siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameters with descriptions (100% coverage). Description adds value by explaining the 'focus' preset meanings (e.g., 'balanced=14 free APIs') and the specific API key requirements for certain sources, which go beyond basic schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool runs a multi-source intelligence report, searching across 18 specified sources in parallel. It distinguishes itself from sibling tools by offering a unified search across multiple platforms instead of single-source searches.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance on when to use focus presets (balanced, trending, comprehensive) and how to override with exact sources. Mentions key cost and API key requirements for X, Reddit, and YouTube, helping decide if alternative siblings should be used instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 21 tool updatesv0.1.0
    • First observedarxiv_search
    • First observedbazaar_search
    • First observeddevto_search
    • First observedgithub_repo_info
    • First observedgithub_search
    • First observedgitlab_search
    • First observedhackernews_search
    • First observedhashnode_search
    • First observedlemmy_search
    • First observedlobsters_search
    • First observednpm_search
    • First observedproducthunt_search
    • First observedpypi_search
    • First observedqiita_search
    • First observedreddit_search
    • First observedscout_report
    • First observedsemantic_scholar_search
    • First observedstackexchange_search
    • First observedx_search
    • First observedyoutube_search
    • First observedzenn_search

TDQS

A3.8/5.0
Disambiguation4/5

Most tools are clearly distinct by platform (e.g., arxiv_search vs. semantic_scholar_search), but some overlap exists between technical blogging platforms (devto_search, hashnode_search, zenn_search, qiita_search) which could cause confusion despite different niches.

Naming Consistency5/5

All tool names follow a consistent pattern: platform name (lowercase, underscore-separated) followed by '_search' or '_info' for non-search functions. This is highly predictable.

Tool Count3/5

21 tools is on the higher side for a search-focused server, bordering on excessive due to many similar search tools for different platforms. However, each serves a distinct niche, making the count borderline acceptable.

Completeness4/5

The server covers a wide range of sources (code repositories, academic papers, social media, blogs, Q&A, etc.) and includes a multi-source report tool. Missing some minor platforms, but overall comprehensive for an intelligence gathering server.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bartonguestier1725-collab/scout-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server