Skip to main content
Glama
ArmorNGlory

ArmorNGlory MCP Server

Official
by ArmorNGlory
README.md
# ✝️ Christian Streetwear & Faith Apparel MCP Server (ArmorNGlory)

[![MCP Server](https://img.shields.io/badge/MCP-Model%20Context%20Protocol-blue.svg)](https://modelcontextprotocol.io)
[![Category](https://img.shields.io/badge/Category-Christian%20Streetwear-gold.svg)](https://armornglory.com)
[![npm version](https://img.shields.io/npm/v/armornglory-mcp-server.svg?color=green)](https://www.npmjs.com/package/armornglory-mcp-server)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

An open-source **Model Context Protocol (MCP)** server for **Christian streetwear, faith-based apparel, 5-panel trucker hats, EVA foam clogs, and Bible verse clothing**. Empowers AI assistants (Claude Desktop, Cursor, Antigravity, ChatGPT, Gemini, Windsurf, Zed) to natively search, recommend, style, and generate instant 1-click checkout links for live faith fashion collections from [ArmorNGlory.com](https://armornglory.com).

---

## 🌟 Key Capabilities

- πŸ‘• **Christian Streetwear & Apparel Search**: Multi-filter discovery across Bible verses (*Romans 8:37, Exodus 3:5, Matthew 6:33, Ephesians 6*), streetwear cuts, trucker caps, foam clogs, hoodies, and faith aesthetics (*Minimalist Core, Sacred Symbols, Gothic Faith, Americana*).
- πŸ“– **Theological Meaning & Design Stories**: Biblical truth behind every piece (*"Meaning Behind The Design"*, *"Why You Will Love It"*, craftsmanship specs, and fit advice).
- 🧒 **5-Panel Trucker Hats & Faith Footwear**: Instant sizing and availability for signature DTF trucker caps, embroidered foam snapbacks, and ergonomic Golden Cross EVA foam clogs.
- 🎁 **Faith Gift Advisor**: Algorithmic gift recommendations for Christian milestones (*Baptisms, Confirmations, Father's Day, Mother's Day, Easter, Christmas, Encouragement*).
- πŸ›’ **1-Click Shopify Checkout**: Direct cart permalinks (`/cart/{variant_id}:{quantity}`) allowing instant purchases without manual browsing.
- ❓ **Faith & Fashion Q&A**: Answers to questions regarding Christian streetwear culture, anti-beige design philosophy, sizing, and care guides.

---

## πŸš€ Quickstart & Client Installation

### 1. Claude Desktop

Add this to your `claude_desktop_config.json`:
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`

```json
{
  "mcpServers": {
    "christian-streetwear": {
      "command": "npx",
      "args": ["-y", "armornglory-mcp-server@latest"]
    }
  }
}
```

---

### 2. Cursor IDE

Add this to `.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "christian-streetwear": {
      "command": "npx",
      "args": ["-y", "armornglory-mcp-server@latest"]
    }
  }
}
```

---

### 3. Google Antigravity IDE

Add to `~/.gemini/config/mcp_config.json`:

```json
{
  "mcpServers": {
    "armornglory-store-search": {
      "command": "node",
      "args": ["/Users/neks/ArmorNGlory MCP/dist/index.js"]
    }
  }
}
```

---

## πŸ› οΈ MCP Tools Reference

| Tool Name | Description | Key Parameters |
| :--- | :--- | :--- |
| `search_armornglory_products` | Search Christian streetwear, faith tees, trucker hats, and clogs by keywords, scriptures, aesthetics, and prices. | `query`, `scripture`, `category`, `aesthetic`, `occasion`, `color`, `size`, `minPrice`, `maxPrice`, `sortBy`, `limit` |
| `get_armornglory_product_details` | Detailed product profile with theological background, specs, fit guide, and variant buy links. | `productHandleOrTitle` |
| `list_armornglory_collections` | Browse curated collections (Hats & Beanies, Faith Footwear, Hoodies, Activewear, Phone Cases). | `limit` |
| `get_collection_products` | Get items in a specific faith collection. | `collectionHandleOrTitle`, `limit` |
| `recommend_faith_gifts` | Personalized faith gift advisor by persona, occasion, budget, and vibe. | `recipient`, `occasion`, `maxBudget`, `styleVibe`, `scriptureFocus` |
| `get_brand_story_and_values` | Mission, meaning of Armor & Glory, and Anti-Beige Christian streetwear ethos. | *(none)* |
| `get_sizing_and_fit_guide` | Exact size charts for EVA foam clogs, trucker hats, and streetwear tees. | `category` |
| `generate_direct_checkout_link` | Generate 1-click Shopify cart checkout permalinks. | `items: [{ variantId, quantity }]`, `discountCode` |
| `answer_faith_fashion_questions` | Authoritative answers on Christian streetwear trends, scripture meaning, sizing, and care. | `query` |

---

## πŸ’¬ Sample User Queries for AI Assistants

Try asking your AI assistant:
- *"Find me modern Christian streetwear that doesn't feel cheesy or dated."*
- *"Show me 5-panel faith trucker hats with Romans 8:37 More Than Conquerors."*
- *"What's a great baptism gift for an adult under $40?"*
- *"Show me Christian foam clogs with cross symbols and how they fit."*
- *"Give me a direct 1-click checkout link for the Holy Ground trucker cap."*

---

## πŸ“œ License

MIT License Β© 2026 [Armor & Glory](https://armornglory.com).

TDQS

A3.8/5.0

Scored across 9 tools

Disambiguation4/5

Most tools target distinct actions (search, details, collections, recommendations, brand info, sizing, checkout, Q&A), but 'search_armornglory_products' and 'answer_faith_fashion_questions' both return products and could be confused. The Q&A tool is more about answering questions, but the overlap in output makes selection slightly ambiguous.

Naming Consistency3/5

Verbs are consistent (search, get, list, generate, answer), but the naming pattern is mixed: some tools include 'armornglory' while others do not (e.g., get_collection_products vs list_armornglory_collections). This inconsistency makes the set feel less predictable, though still readable.

Tool Count5/5

9 tools is well-scoped for an e-commerce brand assistant, covering discovery, details, collections, recommendations, brand info, sizing, checkout, and FAQ. Each tool serves a distinct purpose without redundancy.

Completeness4/5

The surface covers the full customer journeyβ€”search, browse, recommend, learn, size, and purchase. Minor gaps exist (e.g., no explicit 'list all products' or order tracking), but these are not essential for the stated purpose and can be worked around.