Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. AIStorageDepot
A
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:24:06 AM

AIStorageDepot

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

AIStorageDepot prompt, rules, skills & docs library exposed over MCP (search_library + get_item).

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "aistoragedepot": {
      "command": "npx",
      "args": [
        "-y",
        "aistoragedepot"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

@aistoragedepot/mcp

A Model Context Protocol server that exposes your AIStorageDepot library to any MCP-aware AI client β€” Claude Desktop, Cursor, Cline, Windsurf, and others.

Your stored content shows up where you actually work:

  • Prompts β†’ the items you mark with / in the app become MCP prompts (slash-commands) β€” any type, with each prompt's [field] surfaced as a prompt argument you fill in.
  • Resources β†’ every item (rules, docs, skills, MCP configs, prompts) is readable at aisd://item/<id>, so an agent can pull "my coding rules" or "my project guidelines" into context on demand.
  • Tools β†’ search_library(query) and get_item(id) let an agent find and fetch anything in your library programmatically.

Try it with no account (sample mode)

AISD_TOKEN is optional. Run the server with no token and it serves a free, read-only sample of the public curated library β€” a good way to see AIStorageDepot inside your editor before signing up. Add a token later to switch to your own & team libraries. Add the server with an empty env (or omit AISD_TOKEN):

config.json
{
  "mcpServers": {
    "aisd": { "command": "npx", "args": ["-y", "@aistoragedepot/mcp"] }
  }
}

Setup

πŸ‘‰ Easiest path: step-by-step instructions for each app (config-file locations and all) are at https://www.aistoragedepot.com/connect. The manual version:

  1. In AIStorageDepot, go to Settings β†’ API tokens and create a token (free for individuals). Copy it.
  2. Add the server to your MCP client's config. Example (Claude Desktop / claude_desktop_config.json, Cursor ~/.cursor/mcp.json, etc.):
config.json
{
  "mcpServers": {
    "aisd": {
      "command": "npx",
      "args": ["-y", "@aistoragedepot/mcp"],
      "env": {
        "AISD_TOKEN": "aisd_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}
  1. Restart the client. The items you marked / appear as slash-commands; everything is available as resources; and the search_library / get_item tools are ready.

Configuration

Env varRequiredDefaultNotes
AISD_TOKENnoβ€”Token from Settings β†’ API tokens. No token = anonymous sample mode (the free public curated library, read-only). With a token you get your own & team libraries. Has full access to your account β€” keep it secret.
AISD_BASE_URLnohttps://www.aistoragedepot.comPoint at a self-hosted / dev instance if needed.
AISD_WORKSPACESnoβ€”Retired. Your slash menu is now the items you mark / in the app (strict opt-in); this variable is ignored. Search and resources still cover every workspace.

Slash-commands (pull)

Not every client turns MCP prompts into / slash-commands (some only use the tools). To get your library as native slash-commands, sync it to command files β€” for every AI tool you use, not just Claude:

Terminal
npx -y @aistoragedepot/mcp pull --token=aisd_your_token --to=all
TargetWrites toCommands appear as
claude (default)~/.claude/commands/aisd//aisd:<name>
cursor~/.cursor/commands//aisd-<name>
vscodeyour VS Code profile's prompts/ folder (Copilot Chat)/aisd-<name>
windsurf~/.codeium/windsurf/global_workflows/ (Cascade)/aisd-<name>
codex~/.codex/prompts//prompts:aisd-<name>

Tools that aren't installed are skipped automatically. Each tool gets its own dialect (frontmatter, argument hints, $ARGUMENTS where supported). Skills run as-is. Prompts take input: their [fields] show as an argument hint, and whatever you type after the command fills them β€”

Code
/aisd:cold-outreach Jane at Globex, about our payments API

β€” with the AI asking for any value you left out.

OptionDefault
--to=…claudeWhich tools to write commands for β€” comma list, or all.
--token=…AISD_TOKEN envYour API token.
--types=…skill,promptWhich item types become commands (e.g. skill for skills only).
--workspaces="A,B"your personal libraryWhich workspaces to pull (names, or all).
--projectoffWrite into the current repo instead: .claude/commands/, .cursor/commands/, .github/prompts/, .windsurf/workflows/.
--dir=<path>per-targetWrite somewhere else entirely (single --to only).

Re-runs are safe: each target only clears its own files (claude: its namespaced folder; the others: only files with the aisd- prefix β€” your own commands are never touched).

Notes

  • Read-only in v0.1 (it surfaces and fetches your content; it doesn't write back).
  • The library snapshot is cached for ~30s, so a burst of calls hits the API once.
  • Revoke a token any time in Settings β†’ API tokens; the server loses access immediately.

Local development

Terminal
npm install
AISD_TOKEN=<token> AISD_BASE_URL=http://localhost:3100 npm run test:client

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • A
    Agent Skills Search Server

    Search and discover Agent Skills from the skills.sh registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs Agent Skills Search Server β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’

Frequently Asked Questions about AIStorageDepot

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "aistoragedepot": { "command": "npx", "args": ["-y", "AIStorageDepot"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewAIStorageDepot AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/aistoragedepot?style=directory)](https://allmcps.com/mcp/aistoragedepot)
HTML Embed
<a href="https://allmcps.com/mcp/aistoragedepot"><img src="https://allmcps.com/api/badge/aistoragedepot?style=directory" alt="AIStorageDepot on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to AIStorageDepot β†’Install in Claude DesktopInstall in CursorInstall in VS Code