开放开发者平台与 AI 协议中心

开发者 API 与 AI Agent 接入协议

机器友好地访问全网最全的已验证免登录隐私应用目录。永久免费、无需注册 API Key,向所有开发者与 AI Agent 开放。

接口基础 URL
https://nologin.tools/api/v1/
鉴权机制
无(100% 公开直接调用)
调用限流
60 次/分钟(宽松宽容)
标准契约
OpenAPI 3.1.0 与 MCP

核心 RESTful 接口

GET /api/v1/tools
Search, filter, and paginate verified tools

Query Parameters

Parameter Type Description Example
q string Keyword search across name, task, and description q=pdf
category string Filter by category (AI, Design, Media, Privacy, etc.) category=Design
clientSide boolean Filter for in-browser client-side memory processing clientSide=1
offline boolean Filter for PWA offline-capable tools offline=1
openSource boolean Filter for verified open-source tools openSource=1
limit / offset integer Pagination limit (max 100) and offset limit=10&offset=0

Sample Request & Response

curl -s "https://nologin.tools/api/v1/tools?category=Media&clientSide=1&limit=2"
GET /api/v1/tools/:slug
Fetch full security audit, specs, and health for a single tool

Sample Request

curl -s "https://nologin.tools/api/v1/tools/excalidraw-com"
GET /api/v1/workflows
Retrieve curated multi-tool workflow recipes

Sample Request

curl -s "https://nologin.tools/api/v1/workflows?slug=private-podcast-production"
🤖 Model Context Protocol (MCP)

AI Agent 与 MCP 协议原生挂载

直接将 NoLoginTools 作为工具箱挂载到 Cursor、Claude Code、ChatGPT 或 Antigravity。

Instant AI Assistant Setup (`claude_desktop_config.json` or `.cursor/mcp.json`)

{
  "mcpServers": {
    "nologin-tools": {
      "command": "npx",
      "args": [
        "-y",
        "nologin-tools-mcp"
      ]
    }
  }
}
search_nologin_tools
Filter tools by query, offline status, and client-side execution.
get_tool_details
Retrieve security audit, privacy specs, and uptime stats.
list_workflows
Query multi-tool chained recipes for end-to-end tasks.
find_alternatives
Instantly find zero-login replacements for closed SaaS (Canva, Photoshop, etc.).
Widget <4KB · Shadow DOM · Zero Dependencies

可嵌入式免登录切换小部件 (Web Widget)

只需一行轻量级 script 标签,即可在您的技术博客、开源文档或工具导航中嵌入零门槛替代应用推荐卡片。采用原生 Shadow DOM 样式隔离,零依赖,体积小于 4KB。

HTML Snippet
<div class="nologin-widget" data-category="Design" data-theme="auto" data-max="3"></div>
<script src="https://nologin.tools/widget.js" async></script>
实时 Shadow DOM 预览效果 Isolated Shadow DOM

动态实时状态徽章 API

Embed official real-time verification shields into your open-source README, docs, or landing page:

Live Dynamic SVG Badge:
NoLogin Verified
[![NoLogin Verified](https://nologin.tools/api/badge/excalidraw-com.svg)](https://nologin.tools/badge/excalidraw-com)
Dark Theme SVG Shield:
NoLogin Verified
[![NoLogin Verified](https://nologin.tools/badges/flat-dark.svg)](https://nologin.tools/badge/excalidraw-com)

多语言接入代码示例

TypeScript / JavaScript (Fetch API)
const res = await fetch('https://nologin.tools/api/v1/tools?category=Privacy&clientSide=1');
const { data } = await res.json();
console.log('Found', data.total, 'private tools:', data.tools.map(t => t.name));
Python (requests)
import requests

res = requests.get('https://nologin.tools/api/v1/tools', params={'category': 'Design', 'offline': '1'})
tools = res.json()['data']['tools']
for tool in tools:
    print(f"{tool['name']} -> {tool['url']}")