NudgeHost developer resources

Everything developers and agents need to work with NudgeHost, linked from one page. The REST API, the MCP server, and the discovery documents that let software find all of it without being told where to look.

Documentation
MCP server

https://www.nudgehost.com/api/mcp

Stateless streamable HTTP with four tools, share_text, create_upload_url, complete_upload and list_links. It accepts POST and takes a bearer token, either an API key created from the dashboard or an OAuth access token. An unauthenticated call answers 401 with a WWW-Authenticate challenge naming the metadata document below. The API documentation covers the request shape for each tool.

Discovery documents
Two things worth knowing

Use the www hostname

The apex domain nudgehost.com answers with a 308 to www.nudgehost.com. That is a change of origin, so a client following it drops the Authorization header on the way and the request arrives with no credentials. Send API calls to www.nudgehost.com.

Marketing pages are also served as markdown

Every page in the host, viewers, dev-tools, use-cases, features, compare, glossary and blog sections returns markdown to a request whose Accept header asks for text/markdown, at the same URL a browser gets HTML from. The same documents are reachable without content negotiation by adding /index.md to the path, and the markdown sitemap lists every one of them.

Start with a free API key

Create an account, make a key from the dashboard, and call the API on the free plan.

Create a free account