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

aws-cloudscape-mcp-server

v0.1.1

Published

MCP server providing AWS Cloudscape Design System documentation and tools

Readme

AWS Cloudscape MCP Server

A Model Context Protocol (MCP) server that provides knowledge and documentation about the AWS Cloudscape design system for teams building AWS Console applications.

Features

  • Component Documentation: Access documentation for Cloudscape components via resources
  • Search Functionality: Search for components by name, description, or use case
  • Recommendations: Get component recommendations based on UI requirements
  • Best Practices: Access Cloudscape design best practices
  • Design Patterns: Learn about common AWS Console design patterns

Installation

Option 1: Install from npm (Recommended)

# Install globally
npm install -g aws-cloudscape-mcp-server

# Add to your Cline MCP settings
npx mcp-config add aws-cloudscape-mcp-server

Option 2: Manual Setup

  1. Clone the repository:
git clone https://github.com/yourusername/aws-cloudscape-mcp-server.git
cd aws-cloudscape-mcp-server
  1. Install dependencies and build:
npm install
npm run build
  1. Add to your Cline MCP settings manually by editing: ~/Library/Application Support/Code/User/globalStorage/asbx.amzn-cline/settings/cline_mcp_settings.json
"aws-cloudscape-mcp-server": {
  "command": "node",
  "args": ["/path/to/aws-cloudscape-mcp-server/build/index.js"],
  "env": {
    "FASTMCP_LOG_LEVEL": "ERROR"
  },
  "disabled": false,
  "autoApprove": []
}

Usage

Once installed and added to your Cline MCP settings, you can use the server through the Cline interface:

Available Resources

  • Component documentation: cloudscape://component/button
  • Design pattern documentation: cloudscape://pattern/empty-state
  • Category overviews: cloudscape://category/Form

Available Tools

  • search_components: Search for components by query and category
  • get_component_recommendation: Get component recommendations for specific UI needs

Available Prompts

  • cloudscape_best_practices: Best practices for using AWS Cloudscape Design System
  • aws_console_patterns: Common AWS Console design patterns

Development

# Install dependencies
npm install

# Build the server
npm run build

# Run in watch mode during development
npm run watch

# Test with the MCP inspector
npm run inspector

Publishing

To publish this package to npm:

  1. Update version in package.json
  2. Build the package: npm run build
  3. Publish: npm publish

License

MIT