prospector
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FREELLMAPI_KEY | No | API key for LLM API (optional, for --analyze). | |
| OPENAI_API_KEY | No | Alternative OpenAI API key (optional, for --analyze). | |
| OPENAI_BASE_URL | No | Alternative OpenAI base URL (optional, for --analyze). | |
| REDDIT_CLIENT_ID | No | Optional Reddit client ID for OAuth to increase rate limit. | |
| FREELLMAPI_BASE_URL | No | Base URL for LLM API (optional, for --analyze). | |
| REDDIT_CLIENT_SECRET | No | Optional Reddit client secret for OAuth. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| reddit_profilesA | List the available topic profiles by name (e.g. A profile defines which subreddits to mine, the search terms, and the pain lexicon. Use this first to discover what can be swept or queried. |
| reddit_profile_getA | Return one profile's full configuration as a dict. Includes its subreddits, search_terms, pain_lexicon (weighted regex rules), pain_threshold and the evidence thresholds that gate reported gaps. |
| reddit_sweepA | Run a full two-stage sweep for a profile and persist the results. Stage 1 pulls + scores posts across the profile's subreddits and search
terms; stage 2 deep-fetches comments on the highest-pain threads. This makes
live Reddit calls and may take a while. |
| reddit_searchA | Search Reddit live for a query and store the matching posts. If |
| reddit_fetch_threadB | Fetch a post's comment tree live and store the comments.
|
| reddit_queryA | Query already-stored items (no network). Filters: |
| reddit_get_evidenceA | Resolve stored items into citable evidence for the given ids. Returns one EvidenceItem dict per known id (in the order requested) with the permalink and a trimmed verbatim quote — use this to ground any claim in a real Reddit link instead of paraphrasing. Unknown ids are skipped. |
| reddit_statsA | Summary stats for the store (optionally scoped to one Returns totals, the post/comment split, a per-subreddit breakdown, the most frequent matched patterns, and the (min, max) created-utc date range. |
| reddit_exportB | Export stored items as a serialized string in Applies the same |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 9 tools
Each tool serves a distinct function: export, live thread fetch, evidence retrieval, profile configuration, listing profiles, querying stored items, live search, statistics, and full sweep. No two tools have overlapping purposes, ensuring clear selection for an agent.
All tools share the 'reddit_' prefix and use lowercase with underscores. However, the verb/noun order varies: 'reddit_get_evidence' (verb_noun) contrasts with 'reddit_profile_get' (noun_verb), and 'reddit_profiles' and 'reddit_stats' are noun-only. This minor inconsistency prevents a perfect score.
With 9 tools, the server covers the full workflow of discovering profiles, collecting data (search, sweep, fetch_thread), querying stored items, evidence extraction, export, and statistics. The count feels well-scoped for a Reddit mining server.
The tool set covers core operations from configuration to export. Missing are delete/update operations for stored data or profiles, but these may be intentionally omitted given the read-only mining focus. Minor gap.