Hackathon winner MCP server for marketfiyati.org.tr/
{
"mcpServers": {
"market-fiyati-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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/
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 260 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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.