- Home
- MCP servers
- CoolPC
CoolPC
- javascript
18
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"shyuan-coolpc-mcp-server": {
"command": "node",
"args": [
"/path/to/coolpc-mcp-server/build/index.js"
]
}
}
}You have a CoolPC MCP Server that provides real-time product data and pricing from CoolPC for MCP clients like Claude Desktop. It enables intelligent search, product analysis, and automated quote generation, helping you build accurate computer configurations quickly and with clear product insights.
How to use
Once you start the MCP server, you can connect a client like Claude Desktop to query and assemble computer configurations. Use the available functions to search for products by keyword, category, or price range, compare specifications, and generate tailored quotes. You can also browse categories, view heat marks for popular or discounted items, and list products by category to plan builds or searches.
How to install
Prerequisites you need before installing the server are Node.js 18 or newer and Python 3.x for data parsing.
# 1. Install dependencies
npm install
# 2. Build for production
npm run build
# 3. Start the server
npm start
Configuration and usage notes
Configure Claude Desktop to connect to the server by adding an MCP configuration entry. The server exposes a path you supply when building the server. You run the server in your environment and point Claude Desktop to the local or remote runtime as shown in the example below.
{
"mcpServers": {
"coolpc": {
"command": "node",
"args": ["/path/to/coolpc-mcp-server/build/index.js"],
"env": {}
}
}
}
Examples and practical workflows
- Start Claude Desktop and query price ranges for Intel CPUs. - Create a computer menu that runs smoothly at 4K with high CP value while prioritizing budget efficiency. - Generate a budget gaming build around 30,000 currency units. - Find a ready-to-use system under 15,000 currency units suitable for office tasks. - Compare NVIDIA RTX 4070 and RTX 4060 in terms of specs and price. - List all motherboard categories and counts. - Sort AM5 socket CPUs by price. - Locate a 6-core processor. - Search for RTX 4060 GPUs by price asc. - Find 32 GB DDR5 memory options. - Look up 1 TB M.2 SSDs. - Find AM5 compatible B650 motherboards.
Troubleshooting and tips
If Claude Desktop cannot connect to the MCP server, verify that the MCP server command path and the working directory are correct, ensure that Node.js and dependencies are installed, and check that the product data file exists and is accessible.
Available tools
search_products
Search products with keyword, category, and price range filters to find relevant items.
get_product_by_model
Retrieve detailed information for a specific product model.
list_categories
List all product categories and provide summary statistics.
get_category_products
Get all products within a specific category.
search_cpu
Search CPUs with socket, core count, and price sorting options.
search_gpu
Search GPUs by chipset and memory with price-based sorting.
search_ram
Search memory modules by type, capacity, and frequency with sorting.
search_ssd
Search solid-state drives by interface and capacity with sorting.
search_motherboard
Search motherboards by socket, chipset, and form factor with sorting.