A Model Context Protocol server that provides tools for discovering Products through the codeRunner API, with an optional search by name.
- Products Listing:
- List all Products.
- Optional search by
name
parameter.
Add your API key to your MCP settings file:
{
"mcpServers": {
"codeRunner-mcp": {
"command": "npx",
"args": ["path-to-project/build/index.js"],
}
}
}
name
: Search term
{
"status": true
"message": "You have fetch Products successfully".
"data": {
"Products": [
{
"name": "My Products",
"price": 1000,
"category": "Plate"
}
]
}
}
{
"status": true
"message": "You have fetch Products successfully".
"data": {
"Products": [
{
"name": "My Products",
"price": 1000,
"category": "Plate"
}
]
}
}
-
Clone the repository
-
Install dependencies:
npm install
-
Build the project:
npm run build
-
Run inspector tests:
npm run inspector