BilarnaMCP

Created By
bilarna3 months ago
## Agent Integration (API) Bilarna exposes two agent-callable endpoints: **Discover providers** (no contact required): `POST https://api.bilarna.com/api/agent/match?api-version=1.0` Body: `{ "need": "...", "budget_max": 5000, "country": "US", "category": "..." }` **Submit a service request** (creates a lead with buyer contact): `POST https://api.bilarna.com/api/agent/request?api-version=1.0` Required: `need`, `contact_name`, `email` Optional: `business_id`, `phone`, `budget_max`, `country`, `category` Full schema: `https://bilarna.com/agent-manifest.json`
Overview

{ "schema_version": "1.0", "tools": [ { "name": "bilarna_match", "description": "Find verified B2B technology providers by service need. Returns only business_id, score and a short description for each match. Use the returned business_id with bilarna_request to submit a service request to a specific provider.", "parameters": { "need": { "type": "string", "required": true, "description": "Free-text service description (e.g. Salesforce CRM implementation, AWS cloud migration, AI chatbot development, Power BI dashboard setup, Kubernetes cluster configuration)" } }, "endpoint": "https://api.bilarna.com/api/agent/match?api-version=1.0" }, { "name": "bilarna_request", "description": "Submit a B2B technology service request. When business_id is provided the request is routed directly to that provider; otherwise it is sent to the best-matching providers. Contact details are captured for lead routing.", "parameters": { "business_id": { "type": "number", "required": false, "description": "The business_id of a provider returned by bilarna_match. When omitted the request is routed to relevant providers automatically." }, "need": { "type": "string", "required": true, "description": "Free-text description of the service need (e.g. HubSpot onboarding, LLM-powered support bot, ERP migration to NetSuite, multi-cloud architecture design, MLOps pipeline setup)" }, "contact_name": { "type": "string", "required": true, "description": "Full name of the decision-maker or project owner" }, "email": { "type": "string", "required": true, "description": "Business email address — used for lead routing and provider outreach" }, "phone": { "type": "string", "required": false, "description": "Business phone number for direct follow-up (optional)" }, "category": { "type": "string", "required": false, "description": "Service category (e.g. AI & ML development, SaaS integration, cloud infrastructure, data analytics, no-code/low-code platforms, API development, IT security audit)" }, "country": { "type": "string", "required": false, "description": "Country where the provider should be located (e.g. Turkey, United States, Germany, United Kingdom)" }, "budget_max": { "type": "number", "required": false, "description": "Maximum project budget in USD" } }, "endpoint": "https://api.bilarna.com/api/agent/request?api-version=1.0" } ] }

Server Config

{
  "mcpServers": {
    "bilarna": {
      "url": "https://api.bilarna.com/mcp",
      "name": "Bilarna B2B Provider Discovery",
      "description": "Find verified B2B technology providers and submit service requests via Bilarna's AI-powered matching engine. Tools: bilarna_match (discover providers by need), bilarna_request (submit a service request with contact details for lead routing)."
    }
  }
}
Project Info
Created At
3 months ago
Updated At
3 months ago
Author Name
bilarna
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Docwand

an hour ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

40 minutes ago
Puter Mcp

a day ago