Skip to main content
Glama

TASMAC Stock

Live liquor stock and MRP for any TASMAC shop in Tamil Nadu, without a browser. Command line tool, plus an MCP server so you can just ask.

$ tasmac --find 600119
6 shops, 600119, Sholinganallur, Chennai (nearest first)

SHOP  KM       ADDRESS                                                   TYPE
----  -------  --------------------------------------------------------  -----
4107  0.98 km  Old No 51/ New No 16 Rajeev Gandhi Salai, Sholinganallur  elite

$ tasmac 4107 -c wine --max-price 2300
1340  Sula Vineyards Sauvignon Blanc       750ml  35   OTHER
2220  Vina Sol                             750ml  24   IFL
2280  Campo Viejo Tempranillo              750ml  13   IFL

Not affiliated with TASMAC or the Government of Tamil Nadu. It reads the same public endpoints the official site reads, and nothing else.

tasmac.tn.gov.in is a thin client over a public JSON API. There is no auth, no session, and no age gate on the API itself, so the entire browser flow (age gate, location prompt, district picker, shop search, stock modal) collapses into one HTTP POST. A full shop catalogue is about 550KB and comes back in under a second.

The API

Base: https://dashboard-api.tasmace2e.in/api

Stock lives under liquor/, shop locations under rv-shop/.

Endpoint

Body

Returns

liquor/get-stockDetailsBy-shopNumber

{"i_ShopNumber": "4107"}

One shop, full catalogue, with mrpPerBottle

liquor/get-stockDetailsBy-DistrictId

{"p_districtId": 3}

Every shop in a district, no MRP

rv-shop/get-districtList

{}

38 districts with ids

rv-shop/get-talukList

{}

All taluks, with their district id

rv-shop/get-shopList

{}

All 4852 shop numbers, no address

rv-shop/get-shopListBy-ShopNumber

{"i_ShopNumber": "4107"}

Address and coordinates for one shop

rv-shop/get-shopListBy-TalukId

{"i_TalukaId": 27}

Every shop in a taluka, with addresses

rv-shop/get-Nearby-ShopDetails

{"p_latitude": "12.90", "p_longitude": "80.22"}

451 shops sorted by km from that point

liquor/get-productList

{}

Statewide catalogue, 2126 variants, with MRP

liquor/get-brandList

{}

The 7 top level categories

liquor/get-stockDetailsBy-ProductId/lat-long

{"p_latitude": "12.90", "p_longitude": "80.22", "p_productId": "1371"}

Shops near that point stocking that product, by km

The parameter names are the only hard part, and they are inconsistent across the very same API. Stock wants i_ShopNumber and 409s on shopNumber, p_shopNumber and p_shop_number. District stock wants p_districtId, not districtId. Taluka wants i_TalukaId, not i_TalukId (which is the spelling in the site's own service method name). Nearby wants p_latitude and p_longitude as strings, and 409s on numbers. The 409 body helpfully lists the required names, so probing is quick.

Other endpoints seen in the bundle but not used here: liquor/get-productListByBrand, liquor/get-stockDetails, liquor/get-stockDetailsBy-DistrictId-talukId, supplier/get-supplierListProductionType.

liquor/get-fl11-stockDetailsBy-ProductId/lat-long is referenced once in the site's JavaScript, is called by no UI, and 404s on every casing and path variant while the non-fl11 call beside it returns 200. It is dead frontend code for a service that was never deployed, so there is nothing to build against and no way to know what it would have returned.

FL-11, for the record, is not a bar licence. Under the Tamil Nadu Liquor (Licence and Permit) Rules, 1981 it is the licence permitting TASMAC itself to sell foreign liquor by retail, which TASMAC alone may apply for. It is the licence behind the shops this tool already queries. Bars attached to TASMAC shops fall under the Tamil Nadu Liquor Retail Vending (in Shops and Bars) Rules, 2003 and are licensed separately.

rv-shop/get-shopListBy-DistrictId is broken: its validator demands four parameters and its stored procedure accepts one, so it always fails. Listing a district means walking its taluks, which is what the finder does.

Per-item fields: productId, productName, brandName, unitName, packSize, currentStock, mrpPerBottle, supplierName, BuyBackamt.

Quirks

  • brandName is prefixed: WINE, IFL-WINE and OTHER-WINE are all wine. IFL appears to mean imported and OTHER out of state. Undocumented, so treat as a guess. The core splits this into category plus origin.

  • TASMAC's categorisation is loose. Soju, a tequila and several flavoured drinks sit under WINE. Do not present them as wine without saying so.

  • A shop's catalogue lists everything it is authorised to carry, most of it at currentStock: 0. Shop 4107 lists 2158 SKUs and stocks 261 of them.

  • Stock refreshes roughly daily (the site shows its own "stock updated as on" timestamp), so this is a morning picture, not a live till feed.

  • District and taluka tags are wrong for a slice of the shops. Shop 57 has a Chennai address and Chennai coordinates but is filed under Ariyalur district and Andimadam taluka, and its revenue_district_id is null in the master list. The address and coordinates agree with each other, so treat those as the truth and the administrative tag as suspect. The finder flags shops that sit more than 150km from the median of their own group with (?).

  • isMallShop: 1 is what the site labels an Elite shop.

  • There is no pincode anywhere in the API.

Related MCP server: mcp-drizly

Install

Nothing to install for the CLI. Python 3.9+, stdlib only.

The MCP server needs the official SDK:

pip install mcp

Finding a shop

TASMAC has no pincode field, so an area or pincode is geocoded through OpenStreetMap Nominatim first, then handed to the nearby-shops endpoint. Distances are straight line from that point, not driving distance. Nominatim asks for one request per second and a real User-Agent, both of which the core respects. If it is unreachable and the place happens to be a taluka name, the finder falls back to listing that taluka.

python3 tasmac_core.py --find 600119            # pincode, nearest first
python3 tasmac_core.py --find "Thiruvanmiyur"   # area or landmark
python3 tasmac_core.py --district Chennai       # whole district by taluka
python3 tasmac_core.py --near 12.9010,80.2279   # raw coordinates

Finding a bottle

The other direction: which shop near me has this.

python3 tasmac_core.py --product "Sula Brut" --find 600119
python3 tasmac_core.py --product "Old Monk" --find "Velachery" --limit 8
python3 tasmac_core.py --product "jacobs creek chardonnay" --near 12.90,80.22

Names are matched on words in any order, ignoring punctuation and spacing, because the catalogue spells the same brand both JACOB S CREEK and Jacobs Creek. So jacobs creek chardonnay and Jacob's Creek Chardonnay both land.

A query like Old Monk matches several distinct products in three pack sizes each. Locating one variant costs one API call, so the search goes round robin across distinct products first, up to MAX_PRODUCT_QUERIES (6), and lists what it did not search. Searching the first six matches in catalogue order would spend the whole budget on one product's pack sizes and wrongly report the rest as unavailable.

The catalogue is statewide, so a product existing in it says nothing about it being on a shelf near you. Only the location call answers that.

CLI

python3 tasmac_core.py 4107                          # everything in stock
python3 tasmac_core.py 4107 --category wine          # just wine, cheapest first
python3 tasmac_core.py 4107 -c wine --max-price 2500
python3 tasmac_core.py 4107 -q "sula" --all          # name search, incl. sold out
python3 tasmac_core.py 4107 --sort stock --limit 20
python3 tasmac_core.py 4107 --json                   # raw, for piping

python3 tasmac_core.py 4107 --changes                # diff vs previous snapshot
python3 tasmac_core.py 4107 --changes -c wine --since 2026-08-01
python3 tasmac_core.py 4107 --history "vina sol"     # price and stock over time

MCP

claude mcp add tasmac -- python3 /absolute/path/to/tasmac-mcp/mcp_server.py

Or in a client config (Claude Desktop, or anything else that speaks MCP):

{ "mcpServers": { "tasmac": { "command": "python3",
  "args": ["/absolute/path/to/tasmac-mcp/mcp_server.py"] } } }

Tools: tasmac_find_shop, tasmac_find_product, tasmac_stock, tasmac_changes, tasmac_history, tasmac_snapshots.

Every tool takes format: text (default) for a compact table, or json for the full structured result. The table truncates long product names and addresses and omits fields such as product_id, pack_size, supplier and coordinates, so use json when an agent needs to compute over the rows rather than report them. Errors come back as {"error": "..."} under json, so a caller parsing the output never hits a bare string. The CLI equivalent is --json, which works in every mode.

If you would rather have a slash command than an MCP server, copy claude-code/tasmac.md into ~/.claude/commands/ and set the path inside it.

History

Every lookup writes a dated snapshot to history.db (SQLite, same folder, override with TASMAC_DB). Re-running on the same day overwrites that day. So the archive builds itself simply by using the tool, and --changes starts working from the second day onward.

--changes reports four things between two snapshots: new on shelf, sold out, price changed, and stock moved.

Set TASMAC_NO_HISTORY=1 to disable the write and keep lookups read-only.

Tables: snapshots(shop, taken_on, product_id, name, category, origin, unit, mrp, stock) and runs(shop, taken_on, fetched_at, skus, in_stock).

Caching

The product catalogue is cached in history.db for 7 days (PRODUCT_CACHE_DAYS), since it is a 360KB call that rarely changes. District, taluk and per-shop address lookups are cached for the life of the process. Stock itself is never cached: every lookup is live.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    An MCP server for searching and managing Tamil movies from moviesda16.com using a local SQLite database. It enables users to search for movie titles, manually add listings, and automatically update the database through web scraping.
  • A
    license
    -
    quality
    B
    maintenance
    MCP server for the EMF Camp bar API that enables fuzzy drink discovery by one or two keywords, showing the bar and live stock for each drink.
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for AI dialogue using various LLM models via AceDataCloud

  • MCP server for Grok Imagine AI video generation

  • This MCP server provides seamless access to Malaysia's government open data, including datasets, w…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/notprashanth/tasmac-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server