trackmcp
Back to directory
lovieco

lovie-company-formation-mcp-npx

View on GitHub
0 stars JavaScriptOthers Updated May 19, 2026

Documentation

lovie — Company Formation MCP Server

The Company Formation MCP for AI coding tools. Form companies, manage bank accounts, cards, invoices, and more — directly from your terminal.

Quick Start

bash
npm install -g lovie

1. Log in

bash
lovie login

This opens your browser to authenticate with your Lovie account.

2. Add to your AI tool

Claude Code

To add Lovie globally (available in all projects):

bash
claude mcp add --scope user lovie npx lovie

To add Lovie to the current project only:

bash
claude mcp add lovie npx lovie

Cursor — add to `.cursor/mcp.json`

json
{
  "mcpServers": {
    "lovie": {
      "command": "npx",
      "args": ["-y", "lovie"]
    }
  }
}

Windsurf — add to `mcp_config.json`

json
{
  "mcpServers": {
    "lovie": {
      "command": "npx",
      "args": ["-y", "lovie"]
    }
  }
}

Claude Desktop — add to `claude_desktop_config.json`

json
{
  "mcpServers": {
    "lovie": {
      "command": "npx",
      "args": ["-y", "lovie"]
    }
  }
}

VS Code / GitHub Copilot — add to `.vscode/mcp.json`

json
{
  "mcpServers": {
    "lovie": {
      "command": "npx",
      "args": ["-y", "lovie"]
    }
  }
}

Replit — add to `.replit` or use the MCP panel in Replit Agent

json
{
  "mcpServers": {
    "lovie": {
      "command": "npx",
      "args": ["-y", "lovie"]
    }
  }
}

Lovable — in the MCP integration settings, add:

  • Name: `lovie`
  • Command: `npx`
  • Arguments: `-y lovie`

Manus — in the MCP tool configuration, add:

  • Name: `lovie`
  • Command: `npx`
  • Arguments: `-y lovie`

OpenAI (ChatGPT / Codex) — if MCP is supported, use the same stdio config:

json
{
  "mcpServers": {
    "lovie": {
      "command": "npx",
      "args": ["-y", "lovie"]
    }
  }
}

Any MCP-compatible platform — Lovie works with any tool that supports the MCP stdio protocol. Use `npx -y lovie` as the command, or `lovie` if installed globally.

That's it. Your AI tool now has access to 79 Lovie business tools.

What You Can Do

CategoryTools
Company FormationStart formation, set state, choose entity type, check name availability, add shareholders, generate certificate, pay filing fee
Bank AccountsCreate checking/savings/wallet, get balances, freeze/unfreeze, close accounts
CardsIssue virtual/physical cards, set spending limits, freeze/unfreeze, cancel
PaymentsTransfer between accounts, deposit funds, withdraw from wallet
InvoicingCreate/send/duplicate invoices, mark as paid, generate PDFs
ClientsCreate and manage client records for invoicing
TransactionsList and filter transactions with AI-powered categorization
Linked AccountsConnect external bank accounts via Plaid, sync transactions
User ProfileView/update profile, manage sessions, activity history

Commands

bash
lovie              # Show setup instructions
lovie login        # Authenticate with Lovie
lovie logout       # Clear stored credentials
lovie status       # Check authentication status
lovie help         # Show help

How It Works

This package is a lightweight stdio-to-HTTP proxy. It connects your local AI tool to the Lovie MCP server:

code
AI Tool (Claude, Cursor, etc.)  ←— stdio —→  lovie (this package)  ←— HTTPS —→  Lovie MCP Server
  • On startup, discovers all available tools from the remote server
  • Forwards tool calls over HTTPS and returns results via stdio
  • Handles OAuth authentication, session management, and automatic token refresh
  • All business logic runs on the Lovie server — this package is just the bridge

Environment Variables

VariableDescription
`LOVIE_MCP_URL`Custom MCP server URL (default: `https://mcp.lovie.co/mcp/mcp`)
`LOVIE_API_KEY`Bearer token — overrides stored OAuth token
`DEBUG`Enable verbose logging to stderr

Requirements

License

MIT

Frequently asked questions

What is lovie-company-formation-mcp-npx?

lovie-company-formation-mcp-npx is a Model Context Protocol (MCP) server listed in the TrackMCP directory.

How do I install lovie-company-formation-mcp-npx?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is lovie-company-formation-mcp-npx open source?

Yes — it is hosted on GitHub at https://github.com/lovieco/lovie-company-formation-mcp-npx.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP