Quick Start: National Tenders¶
Get started searching below-threshold procurement tenders in under 5 minutes.
Step 1: Connect to the Server¶
Claude Desktop¶
Add the following to your Claude Desktop MCP configuration:
Direct API (cURL)¶
curl -X POST https://national-tenders.lexsocket.ai/ \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_tenders",
"arguments": {
"query": "IT services",
"country": "FR",
"limit": 5
}
},
"id": 1
}'
Step 2: Make Your First Search¶
Search across all countries¶
Search a specific country¶
Step 3: Explore Opportunities¶
Browse upcoming deadlines¶
Find open opportunities¶
Search by sector (CPV code)¶
Common CPV codes:
| CPV Code | Sector |
|---|---|
45000000 |
Construction work |
72000000 |
IT services |
71000000 |
Architectural & engineering services |
79000000 |
Business services |
33000000 |
Medical equipment |
34000000 |
Transport equipment |
50000000 |
Repair & maintenance |
Search by region (NUTS code)¶
NUTS code examples:
| NUTS Code | Region |
|---|---|
FR |
All France |
FR10 |
Ile-de-France |
UKI |
London |
DE300 |
Berlin |
ES300 |
Madrid |
NL329 |
Utrecht |
Step 4: Refine Your Search¶
Filter by contract value¶
{
"method": "search_by_value_range",
"params": {
"min_value": 50000,
"max_value": 200000,
"currency": "EUR",
"query": "consulting services"
}
}
Search by buyer¶
Find similar tenders¶
Once you find an interesting tender, discover related opportunities:
{
"method": "find_similar_tenders",
"params": {
"tender_id": "FR-24-0054321",
"limit": 5,
"country": "FR"
}
}
Step 5: Get Statistics¶
Database overview¶
Procurement trends¶
Group by options: country, status, source, currency, nuts_code_main
Next Steps¶
- Overview: Full reference of all 13 available tools
- TED Server: For above-threshold EU tenders
- Examples: More usage scenarios