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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@kasarlabs/mcp-doc-mcp

v0.1.2

Published

Help and documentation MCP server for Ask Starknet: usage guide, architecture explanation, capabilities listing, and project ideas

Downloads

279

Readme

MCP Doc Server

Documentation and discovery MCP server for Ask Starknet. This MCP provides tools to explore Ask Starknet's architecture, capabilities, project ideas, and usage guide.

Features

  • Quick Start Guide: Get help on how to use Ask Starknet with setup instructions and best practices
  • Architecture Explanation: Understand how Ask Starknet's unified router and MCP servers work together
  • Capabilities Listing: Discover all available MCPs organized by domains (wallets, DeFi, blockchain, dev-tools, special)
  • Project Ideas: Get inspired with project ideas that can be built using Ask Starknet

Installation

npx -y @kasarlabs/mcp-doc-mcp

Available Tools

1. mcp_doc_help

Get comprehensive help on using Ask Starknet, including quick start guide, setup instructions, best practices, and troubleshooting.

Parameters:

None (empty object)

Example:

{}

Response:

Returns a markdown-formatted help guide with:

  • What is Ask Starknet
  • Quick start examples
  • Setup instructions (minimal and full)
  • Best practices
  • Troubleshooting tips
{
  "status": "success",
  "data": "# Ask Starknet Help Guide\n\nWelcome to Ask Starknet!..."
}

2. mcp_doc_explain_architecture

Explains the Ask Starknet architecture and how it works.

Parameters:

  • topic (optional): "router" | "mcps" | "interaction" | "all"

Example:

{
  "topic": "router"
}

Response:

{
  "status": "success",
  "data": {
    "overview": "...",
    "unifiedRouter": {
      "description": "...",
      "howItWorks": "...",
      "technologies": [...]
    }
  }
}

3. mcp_doc_list_capabilities

Lists all Ask Starknet capabilities organized by domains.

Parameters:

  • domain (optional): "wallets" | "defi" | "blockchain" | "dev-tools" | "special" | "all"
  • mcp (optional): Filter by specific MCP name (e.g., "avnu", "erc20")

Example:

{
  "domain": "defi"
}

Response:

{
  "status": "success",
  "data": {
    "domains": {
      "defi": {
        "description": "...",
        "mcps": {
          "avnu": {
            "description": "...",
            "tools": [...],
            "expertise": "...",
            "toolCount": 2
          }
        }
      }
    },
    "statistics": {
      "totalMCPs": 20,
      "totalTools": 150,
      "mcpsByDomain": {...}
    }
  }
}

4. mcp_doc_suggest_projects

Suggests project ideas that can be built with Ask Starknet.

Parameters:

  • domain (optional): "defi" | "nft" | "trading" | "automation" | "analytics" | "gaming" | "all"
  • mcps (optional): Filter projects using specific MCPs (e.g., ["avnu", "ekubo"])

Example:

{
  "domain": "defi",
  "mcps": ["avnu", "ekubo"]
}

Response:

{
  "status": "success",
  "data": {
    "projects": [
      {
        "name": "Multi-DEX Swap Aggregator",
        "description": "...",
        "domain": "defi",
        "requiredMCPs": ["avnu", "ekubo", "fibrous"],
        "features": [...]
      }
    ],
    "totalProjects": 5
  }
}

Domains

Ask Starknet organizes MCPs into the following domains:

  • Wallets: argent, braavos, okx, openzeppelin
  • DeFi: avnu, ekubo, endurfi, extended, fibrous, opus, vesu, unruggable
  • Blockchain: erc20, erc721, transaction, starknet-rpc, contract
  • Dev Tools: scarb, cairo-coder
  • Special: artpeace

Development

Build

pnpm install
pnpm build

The build process compiles TypeScript and copies resource files to the build directory.

Architecture

This MCP is designed to be completely standalone with no blockchain dependencies. It uses:

  • Static resources: Help guide, architecture docs, and capabilities are stored as markdown files in src/resources/
  • Static project ideas: Curated list of project ideas
  • No external dependencies: All data is bundled with the MCP for offline access

License

MIT

Support