Stockspark MCP Poc MCP Server

Production-ready Model Context Protocol server for AI-powered vehicle dealership management

Local serverstdio

What is the Stockspark MCP Poc MCP server?

Stockspark MCP Poc MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Production-ready Model Context Protocol server for AI-powered vehicle dealership management.

What you get

A production-ready Model Context Protocol (MCP) server that provides AI agents with 36 specialized tools for complete vehicle dealership management through the StockSpark/Carspark API platform.

What the assistant can call

Once Stockspark MCP Poc is connected, these are the calls the assistant has available:

  • get_user_context — View current company/dealer selection
  • list_user_companies — List accessible companies
  • select_company — Choose working company
  • list_company_dealers — List company's dealers
  • select_dealer — Choose working dealer
  • search_vehicle_versions — Progressive search for vehicle specifications
  • compare_vehicle_versions — Compare similar trims/versions
  • get_vehicle_version_template — Get complete vehicle data template
  • get_vehicle_makes — List available manufacturers
  • get_vehicle_models — Get models for a make
  • get_vehicle_trims — Get trim levels with specifications
  • get_vehicle_transmissions — Available transmission types

Configuration and credentials

You will need 3 environment variables: STOCKSPARK_USERNAME, STOCKSPARK_PASSWORD, STOCKSPARK_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Stockspark MCP Poc's toolset — get_user_context, list_user_companies, select_company and 11 more — is a fair guide to whether it matches your workflow. It is maintained by loukach; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Stockspark MCP Poc's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Stockspark MCP Poc.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the stockspark mcp poc mcp server does with a few real requests.

Available tools

ToolWhat it does
get_user_contextView current company/dealer selection
list_user_companiesList accessible companies
select_companyChoose working company
list_company_dealersList company's dealers
select_dealerChoose working dealer
search_vehicle_versionsProgressive search for vehicle specifications
compare_vehicle_versionsCompare similar trims/versions
get_vehicle_version_templateGet complete vehicle data template
get_vehicle_makesList available manufacturers
get_vehicle_modelsGet models for a make
get_vehicle_trimsGet trim levels with specifications
get_vehicle_transmissionsAvailable transmission types
get_vehicle_bodiesBody style options
get_vehicle_fuelsFuel type options

How to install the Stockspark MCP Poc MCP server

{
  "mcpServers": {
    "stockspark": {
      "command": "node",
      "args": ["/absolute/path/to/stockspark-mcp-poc/src/index.js"],
      "env": {
        "STOCKSPARK_USERNAME": "your-email@dealership.com",
        "STOCKSPARK_PASSWORD": "your-password"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
STOCKSPARK_USERNAMEConfiguration value read at startup.Optional
STOCKSPARK_PASSWORDConfiguration value read at startup.Optional
STOCKSPARK_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Stockspark MCP Poc to get user context.
  • Use Stockspark MCP Poc to list user companies.
  • Use Stockspark MCP Poc to select company.

Frequently asked questions

It connects Stockspark MCP Poc to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_user_context, list_user_companies, select_company, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Stockspark MCP Poc directly.