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.
| Endpoint | Returns |
|---|---|
| GET /api/v1 | Index of every endpoint below. |
| GET /api/v1/company | Profile, contact details, and links to every machine-readable resource. |
| GET /api/v1/services | The five services, what each includes, and indicative timelines and prices. |
| GET /api/v1/products | Software products built and supported in Nepal. |
| GET /api/v1/products/{slug} | Full description of one product. |
| GET /api/v1/blog | Published articles. Filter with ?category= and ?limit=. |
| GET /api/v1/blog/{slug} | One article, body included as CommonMark. |
| GET /api/v1/faqs | Answered questions with published rupee ranges. Filter with ?topic=. |
| GET /api/v1/jobs | Open roles. Pass ?open=false to include closed ones. |
| GET /api/v1/jobs/{slug} | One role in full, including how to apply. |
| GET /api/v1/team | Who works here and what each person does. |
| GET /api/v1/pages | Service and location landing pages. |
| GET /api/v1/search | Search everything at once. Requires ?q=. |
| GET /api/v1/health | Service 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_site— Search 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_profile— Get 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_services— List 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_products— List the software products Infobytes Nepal builds and supports, such as Nidanyo, Serviol, Purseol, LeadRack, and Pravyo.get_product— Get the full description of one product by its slug, as returned by list_products.list_blog_posts— List published articles, newest first. Useful for questions about cost, process, and technology choices in Nepal.get_blog_post— Get one blog post by slug, including the entire body as markdown so it can be quoted or summarised.list_faqs— Get answered questions about pricing, timelines, process, and support, with the indicative rupee ranges the company quotes publicly.list_open_roles— List the jobs and internships Infobytes Nepal is currently hiring for.get_open_role— Get the full description of one role by slug: responsibilities, requirements, compensation, and where to send an application.list_team— List 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-content— Look 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-quote— Help 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-careers— Find which roles Infobytes Nepal is hiring for, what each one requires, and how a candidate should apply.
Discovery documents
- /.well-known/api-catalog — RFC 9727 catalog of both APIs.
- /api/openapi.json — OpenAPI 3.1 description of the REST API.
- /.well-known/mcp/server-card.json — MCP Server Card (SEP-1649).
- /.well-known/agent-skills/index.json — Agent Skills discovery index.
- /llms.txt — The whole company as one plain-text file.
- /auth.md — What authentication is needed, and what agents must not do.
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.