---
title: "nikunjk.com Developer Resources"
description: "APIs, OpenAPI spec, MCP server, and markdown endpoints for nikunjk.com - built for developers and AI agents."
url: 'https://www.nikunjk.com/developers'
lastModified: '2026-07-29T00:00:00.000Z'
---

# nikunjk.com Developer Resources

nikunjk.com exposes its content through a small read-only API, an MCP server, and markdown mirrors of every page. Everything is public and requires no authentication.

## OpenAPI Specification

The full API surface is documented in an OpenAPI 3.1 spec: [https://www.nikunjk.com/openapi.json](https://www.nikunjk.com/openapi.json)

## API Endpoints

- `GET /api/writing` - Recent blog posts from writing.nikunjk.com as JSON
- `GET /api/md` - Index of pages available as markdown
- `GET /api/md/{page}` - Any page as markdown (or append `.md` to a page URL, e.g. [/founders.md](https://www.nikunjk.com/founders.md))
- `GET /api/logo/{domain}` - Logo lookup for a domain
- `GET /api/og` - Open Graph image generator
- `GET /api/sitemap.xml` - XML sitemap

Errors are structured JSON with `success: false`, an `error` message, a machine-readable `code`, and a `hint` for resolution.

## MCP Server

An MCP (Model Context Protocol) server runs at `https://www.nikunjk.com/api/mcp` using Streamable HTTP transport, with a discovery manifest at [https://www.nikunjk.com/.well-known/mcp.json](https://www.nikunjk.com/.well-known/mcp.json).

Tools:
- `get_profile` - Structured profile of Nikunj Kothari
- `get_page` - Any site page as markdown
- `list_writing` - Recent blog posts

Connect from Claude Code:

```
claude mcp add --transport http nikunjk https://www.nikunjk.com/api/mcp
```

## For AI Agents

- [/llms.txt](https://www.nikunjk.com/llms.txt) - Structured profile optimized for LLMs
- [/llms-full.txt](https://www.nikunjk.com/llms-full.txt) - Extended version with full context
- Markdown mirrors of all pages (append `.md` to any page URL)

## Contact

Email: [nikunj@fpvventures.com](mailto:nikunj@fpvventures.com)

---

*This page is available in markdown format for AI agents at [/developers.md](/developers.md)*
