Hackathon winner MCP server for marketfiyati.org.tr/
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"market-fiyati-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Hackathon winner MCP server for marketfiyati.org.tr/
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / ecommerce
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Market Fiyati Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for marketfiyati.org.tr, a price comparison website for groceries in Turkey.
This server exposes the search functionality of the website as tools for MCP-compatible clients.
Clone the repository:
git clone https://github.com/mtcnbzks/market-fiyati-mcp-server.git
cd market-fiyati-mcp-server
Create a virtual environment and install dependencies:
uv venv
uv sync
You can run this server and connect to it from any MCP-compatible client.
To start the server, run the following command in your terminal:
uv run python -m market_fiyati_mcp_server.server
The server will start and listen for connections from MCP clients.
You can use the MCP development tools to inspect and interact with the server.
Install in an MCP Client (e.g., Claude Desktop): To make the server available in a client like the Claude Desktop App, you can install it using:
uv run mcp install src/market_fiyati_mcp_server/server.py
Manual Configuration (e.g., VS Code):
To add the server to a client that uses a mcp.json configuration file (like VS Code), add the following to the servers object in your mcp.json.
{
"servers": {
"market-fiyati": {
"command": "uvx",
"args": ["market-fiyati-mcp-server"]
}
}
}
This server provides the following tools:
search_productSearch for products matching given keywords.
keywords (str): The search terms.latitude (float, optional): Latitude for location-based search.longitude (float, optional): Longitude for location-based search.distance (int, optional): Radius in km for location-based search.search_product_by_identityRetrieve product information by a unique identity (e.g., barcode or internal ID).
identity (str): The product's unique ID or barcode.identityType (str, optional): The type of identity (id or barcode). Defaults to id.keywords (str, optional): Optional keywords to refine the search.latitude (float, optional): Latitude for location-based search.longitude (float, optional): Longitude for location-based search.distance (int, optional): Radius in km for location-based search.search_similar_productsFind products similar to a reference item ID.
id (str): The ID of the reference product.keywords (str): Keywords to find similar products.latitude (float, optional): Latitude for location-based search.longitude (float, optional): Longitude for location-based search.distance (int, optional): Radius in km for location-based search.