npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/sweatent-askr

v1.0.0

Published

MCP question-answering assistant with TUI management panel

Downloads

8

Readme

askr

MCP Q&A Assistant / MCP 问答助手

Async Q&A capabilities for AI clients via MCP protocol, powered by any OpenAI-compatible API.

通过 MCP 协议为 AI 客户端提供异步问答能力,后端对接任意 OpenAI 兼容 API。

English | 中文文档

🤖 100% Vibe Coding — Built entirely through AI-assisted development.

⭐ If you like this project, please give it a star!


Quick Start

# First time: launch the management panel to configure your provider
npx @sweatent/askr -m

# Start the MCP stdio server
npx @sweatent/askr

Features

  • question — Ask a single question with streaming support
  • agentq — Ask multiple independent questions in parallel (configurable concurrency)
  • list — View recent session statuses
  • check — Retrieve session results with blocking wait, full content, and chain-of-thought support

MCP Client Integration

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "askr": {
      "command": "npx",
      "args": ["@sweatent/askr"]
    }
  }
}

Claude Code

Add via CLI or global config:

claude mcp add askr -- npx @sweatent/askr

Or manually edit .claude/settings.json:

{
  "mcpServers": {
    "askr": {
      "command": "npx",
      "args": ["@sweatent/askr"]
    }
  }
}

Cursor / Other MCP Clients

Configure a stdio-type MCP server with command npx @sweatent/askr per your client's documentation.

Management Panel

npx @sweatent/askr -m
# or
npx @sweatent/askr --manage

Menu options:

  1. Manage Provider — Configure Base URL, API Key, model (auto-fetch model list or manual input)
  2. Manage Questions — View/close active sessions
  3. View Logs — Browse session history with question, chain-of-thought, and answer (live refresh for running sessions)
  4. More Settings — Max concurrency, timeout, fold characters, system prompt, language

Supports Chinese and English interfaces.

Configuration

Config file is stored in the system data directory:

| Platform | Path | |----------|------| | Windows | %AppData%/askr/config.json | | macOS | ~/Library/Application Support/askr/config.json | | Linux | ~/.config/askr/config.json |

{
  "language": "en",
  "provider": {
    "baseUrl": "https://api.example.com",
    "apiKey": "sk-xxx",
    "model": "gpt-4",
    "stream": true
  },
  "settings": {
    "maxConcurrent": 5,
    "timeout": 150,
    "foldChars": 1000,
    "systemPrompt": "You are a search assistant..."
  }
}

Base URL

  • Standard: https://api.example.com — automatically appends /v1/chat/completions
  • Custom endpoint: https://api.example.com/custom/path# — trailing # means use as-is (strip the #)

Tool Reference

question

{ "content": "What is REST and its core principles?" }

Ask a single question. Answers exceeding foldChars are truncated; use check for full content. Returns session ID on timeout.

agentq

{ "questions": ["What is Docker?", "What is Kubernetes?"] }

Parallel questions, up to maxConcurrent. Each question runs in isolated context, returning its own result or session ID.

list

{ "count": 5 }

Returns the most recent N session summaries (ID, timestamp, status, question preview).

check

{ "id": "a3f8k2", "showFull": true, "showThinking": true }

Retrieve session result. Blocks if the session is still running. Parameters:

  • showFull — Return full answer without truncation
  • showThinking — Include chain-of-thought content

Highlights

  • Streaming — SSE streaming with real-time session file updates
  • Auto fallback — Automatically falls back to non-streaming if streaming fails
  • Chain-of-thought separation — Detects <think> tags, reasoning_content, and thinking fields
  • Hot reload — Config changes from the management panel take effect immediately, no restart needed
  • Session persistence — All Q&A records saved locally with full history browsing

Requirements

  • Node.js >= 18

Recommended Prompt

Add the following to your project's CLAUDE.md or other AI client system prompt for best results:

## askr Usage Guidelines

You can use askr MCP tools to search and ask an external AI to assist with your tasks.

### When to Use

- **Pre-implementation research**: Before using unfamiliar or uncertain public APIs / library functions, query their signatures, parameters, usage, and caveats to avoid writing incorrect code from memory
- **Unfamiliar concepts**: Look up terms, protocols, or design patterns you don't fully understand
- **Latest information**: Query recently released versions, changelogs, news, or announcements that may not be covered in your training data
- **Troubleshooting**: When facing hard-to-solve errors or unexpected behavior, search for solutions including GitHub Issues, Stack Overflow discussions, etc.
- **Solution comparison**: When deciding between multiple technical approaches, query their trade-offs and community recommendations
- **Configuration & compatibility**: Look up platform-specific configurations or known compatibility issues for particular environments or versions

### Principles

1. Prefer using askr to search first; only rely on your own knowledge when you are fully confident it is accurate and up-to-date
2. Be specific in your questions, include necessary context (language, framework, version, etc.), avoid vague queries
3. Combine related sub-questions into one question; use agentq for unrelated parallel questions
4. Use check to retrieve timed-out results; re-ask if check times out twice
5. Use check(id, showFull: true) when you need the full untruncated answer

Acknowledgements

Thanks to the LinuxDo community for the support!

License

MIT