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 🙏

© 2026 – Pkg Stats / Ryan Hefner

aidocx-mcp-server

v0.4.1

Published

MCP server for AiDocX - Create, upload, and manage documents (contracts, proposals, quotations, resumes, reports) from AI assistants

Readme

aidocx-mcp-server

MCP (Model Context Protocol) server for AiDocX — AI-powered document management platform.

Create, upload, and manage business documents directly from AI assistants like Claude Desktop, Claude Code, and other MCP-compatible clients.

Supported document types: Contracts, Proposals, Quotations, Resumes, Business Plans, Reports, Official Letters, Purchase Orders, Manuals/SOPs, and more.

Quick Start

1. Get API Keys

Sign up at app.aidocx.ai and go to Settings → API Keys to generate your credentials.

2. Configure Your AI Client

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "aidocx": {
      "command": "npx",
      "args": ["aidocx-mcp-server"],
      "env": {
        "AIDOCX_API_KEY": "ak_xxxxxxxx",
        "AIDOCX_API_SECRET": "your_secret_here"
      }
    }
  }
}

Claude Code

claude mcp add aidocx \
  -e AIDOCX_API_KEY=ak_xxxxxxxx \
  -e AIDOCX_API_SECRET=your_secret_here \
  -- npx aidocx-mcp-server

3. Start Using

Ask your AI assistant:

  • "NDA 계약서 작성해줘" (Draft an NDA contract)
  • "견적서 만들어줘" (Create a quotation)
  • "이력서 작성해줘" (Create a resume)
  • "제안서 만들어줘" (Create a proposal)
  • "내 문서 목록 보여줘" (Show my documents)
  • "이 문서 AI로 분석해줘" (Analyze this document with AI)

Available Tools

| Tool | Description | |------|-------------| | create_document | Create a new document (contract, proposal, quotation, resume, report, etc.) — auto-generates PDF | | upload_document | Upload a PDF or Office file (DOC, DOCX, HWP, XLS, XLSX, PPT, PPTX) | | list_documents | List documents with optional pagination | | get_document | Get document details and extracted text | | delete_document | Delete a document | | list_folders | List folders | | create_folder | Create a new folder | | delete_folder | Delete a folder (optionally with all contents) | | search_documents | Search documents with text query, date filters, and pagination | | analyze_document | AI-powered document analysis with risk score and insights |

Document Types

| Type | Examples | |------|----------| | contract | Service agreements, NDAs, employment contracts | | proposal | Project proposals, consulting proposals | | quotation | Price quotes, cost estimates | | plan | Project plans, strategy documents | | business-plan | Investor pitch business plans | | report | Analysis reports, audit reports | | official-letter | Official letters, notices, requests | | resume | Resumes, CVs, cover letters | | purchase-order | Purchase orders, delivery notes | | manual | SOPs, user manuals, guides |

Workflow

  1. AI generates a document → calls create_document → PDF is created in AiDocX
  2. Open the URL returned by the tool to view, download, or share
  3. For contracts: open the signing workspace URL to place signature fields and send to signers

Environment Variables

| Variable | Description | |----------|-------------| | AIDOCX_API_KEY | API key (starts with ak_) | | AIDOCX_API_SECRET | API secret (64-char hex) |

Links