For developers and AI agents

Content API and MCP server

Everything Infobytes Nepal publishes is available as JSON, and as an MCP server for agents. There is no API key, no registration, and no rate limit beyond ordinary fair use. CORS is open, so this works from a browser.

REST API

Base URL https://www.infobytesnepal.com/api/v1. Every response is JSON. Errors come back as RFC 9457 problem documents with application/problem+json.

EndpointReturns
GET /api/v1Index of every endpoint below.
GET /api/v1/companyProfile, contact details, and links to every machine-readable resource.
GET /api/v1/servicesThe five services, what each includes, and indicative timelines and prices.
GET /api/v1/productsSoftware products built and supported in Nepal.
GET /api/v1/products/{slug}Full description of one product.
GET /api/v1/blogPublished articles. Filter with ?category= and ?limit=.
GET /api/v1/blog/{slug}One article, body included as CommonMark.
GET /api/v1/faqsAnswered questions with published rupee ranges. Filter with ?topic=.
GET /api/v1/jobsOpen roles. Pass ?open=false to include closed ones.
GET /api/v1/jobs/{slug}One role in full, including how to apply.
GET /api/v1/teamWho works here and what each person does.
GET /api/v1/pagesService and location landing pages.
GET /api/v1/searchSearch everything at once. Requires ?q=.
GET /api/v1/healthService health, including database reachability.

Full description: OpenAPI 3.1 document.

MCP server

Streamable HTTP at https://www.infobytesnepal.com/api/mcp. Stateless, unauthenticated, 11 read-only tools. Point any MCP client at that URL — there is no session to establish and no token to obtain.

  • search_siteSearch everything Infobytes Nepal publishes — products, services, blog posts, landing pages, FAQs, open roles, and team members — and get back titles, summaries, and URLs. Use this first when you do not know which specific tool answers the question.
  • get_company_profileGet who Infobytes Nepal is, where they are based, how to contact them, which services and products they offer, and links to their machine-readable resources.
  • list_servicesList the services Infobytes Nepal sells — web design and development, SEO, digital marketing, IT training, and graphic design — with what each includes and indicative timelines and prices.
  • list_productsList the software products Infobytes Nepal builds and supports, such as Nidanyo, Serviol, Purseol, LeadRack, and Pravyo.
  • get_productGet the full description of one product by its slug, as returned by list_products.
  • list_blog_postsList published articles, newest first. Useful for questions about cost, process, and technology choices in Nepal.
  • get_blog_postGet one blog post by slug, including the entire body as markdown so it can be quoted or summarised.
  • list_faqsGet answered questions about pricing, timelines, process, and support, with the indicative rupee ranges the company quotes publicly.
  • list_open_rolesList the jobs and internships Infobytes Nepal is currently hiring for.
  • get_open_roleGet the full description of one role by slug: responsibilities, requirements, compensation, and where to send an application.
  • list_teamList the people at Infobytes Nepal, their roles, and what each of them specialises in.

Markdown for agents

Any public page returns clean markdown instead of HTML when the request asks for it. The URL does not change:

curl -H 'Accept: text/markdown' https://www.infobytesnepal.com/services

The response carries Content-Type: text/markdown and an x-markdown-tokens header with an approximate token count, so an agent can budget before it reads.

Agent skills

Task-shaped instructions for agents, listed at /.well-known/agent-skills/index.json with a sha256 for each document.

  • query-infobytes-contentLook up anything Infobytes Nepal publishes — services, products, pricing guidance, blog posts, FAQs, team, and open roles — using their public read-only API or MCP server.
  • request-infobytes-quoteHelp someone get a project quote from Infobytes Nepal: what to gather first, what the indicative ranges are, and where to send the request.
  • explore-infobytes-careersFind which roles Infobytes Nepal is hiring for, what each one requires, and how a candidate should apply.

Discovery documents

Terms of use

The content is published for search indexing and for use as input to a live AI answer — quote it and link back to the source URL that every record carries. It is not offered for model training; this is declared in robots.txt as a Content Signal.

The contact, quote, and job application forms are not agent surfaces. They create a record a person will act on, so an agent should hand its user the link rather than submit on their behalf. See /auth.md.

Something missing, or need a shape this API does not return? Tell us.