🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@expensebot/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expensebot/mcp-server

MCP server for ExpenseBot — lets Claude, ChatGPT, Cursor, and other AI assistants answer questions about ExpenseBot by wrapping the public /api/discover knowledge-base endpoint.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

ExpenseBot MCP Server (read-only)

An MCP server that exposes ExpenseBot's public knowledge base to AI assistants like Claude Desktop, Cursor, Gemini, and any other client that speaks the Model Context Protocol.

Users install this server once, then they can ask their AI assistant questions like:

  • "Does ExpenseBot work with Xero?"
  • "How much does it cost for accountants?"
  • "What's the CFO pitch for ExpenseBot?"

and get accurate answers sourced from expensebot.ai/api/discover.

Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "expensebot": {
      "command": "npx",
      "args": ["-y", "@expensebot/mcp-server"]
    }
  }
}

Restart Claude Desktop. You should see "expensebot" as an available MCP server, with 3 tools.

Cursor, Continue, other MCP clients

Use the same command: npx -y @expensebot/mcp-server

Tools

ToolDescription
search_expensebot(query, persona?)Natural-language search over the KB
get_expensebot_persona(persona)Full pitch for a specific audience
get_expensebot_overview()Top-level product info and pricing

Testing

Run the contract tests locally (they hit the production API):

npm install
npm test

Or test against a local dev server:

EXPENSEBOT_API_BASE=http://localhost:3000 npm test

Environment variables

  • EXPENSEBOT_API_BASE — override the API base (default: https://www.expensebot.ai)

License

MIT

Keywords

mcp

FAQs

Package last updated on 30 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts