agenticmarket

Agenticmarket CLI — Development skill for Claude Code

Development community

The CLI for MCP servers.

How to install Agenticmarket CLI

This entry records only its repository, not the path inside it, so there is no exact command to give. Open agenticmarket/agenticmarket-cli and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agenticmarket CLI does

The CLI for MCP servers. Build and Install any server into VS Code, Cursor, or Claude Desktop in one command. Build and publish your own.

Alternatives in Development

  • Mempalace Init — Set up MemPalace — install the package, initialize a palace, register the MCP server with Cursor, and verify e 58.6k ★
  • Gmail AutoAuth MCP Installation Guide — This guide will help you install and configure the Gmail AutoAuth MCP server for managing Gmail operations thr 1.1k ★
  • Projectmem — Open-source coding agent memory 766 ★

README

AgenticMarket — Build and Install MCP Servers in One Command

The CLI for Model Context Protocol servers. Create production-ready MCP servers from scratch, or install existing ones into every IDE — no JSON editing, no manual configuration.

[![npm version](https://img.shields.io/npm/v/agenticmarket)](https://www.npmjs.com/package/agenticmarket) ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg) [![Node.js 18+](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)


TL;DR

**Build a new MCP server:**

npm install -g agenticmarket
agenticmarket create my-weather-server
cd my-weather-server && npm install && npm run dev

**Install an existing MCP server:**

agenticmarket auth 
agenticmarket install username/server-name

**Install an agent skill:**

agenticmarket skill list
agenticmarket skill install nextjs-app-router
agenticmarket skill install nextjs-app-router --agent andromity --scope project
agenticmarket skill install nextjs-app-router --agent cursor,claude-code
agenticmarket skill install nextjs-app-router --all --scope user
agenticmarket skill update nextjs-app-router --agent cursor
agenticmarket skill remove nextjs-app-router --agent cursor

Skills are free, public `SKILL.md` instruction packages. Skill installation does not require an API key. Without `--agent` or `--all`, the CLI opens a multi-select prompt so you can choose exactly which agent(s) receive the skill. The CLI writes the native file format for each selected agent, preserves existing files unless `--overwrite` is supplied, and records a best-effort install event for marketplace analytics. Use `--agent` or `--all` in scripts and CI.

`create` scaffolds a production-ready Hono + TypeScript MCP server with security middleware, rate limiting, and deployment config in ~30 seconds.

`install` writes MCP entries into VS Code, Cursor, Claude Desktop, and every other IDE you have — automatically.

**[Bro