0.0.1 • Published 3d ago
konect4ai
Licence
MIT
Version
0.0.1
Deps
0
Size
6 kB
Vulns
0
Weekly
0
konect4ai
Official JavaScript SDK for Konect4ai.
Konect4ai turns any website into an AI-callable tool. Build once, then consume the same capability through REST, MCP, CLI, RSS or this SDK. Built-in structure drift detection alerts you when a target site changes, so your pipeline does not silently break.
Early preview. This is version 0.0.1. The client below performs real HTTP calls, but the API surface is still expanding. Pin your version and check the changelog before upgrading.
Install
npm install konect4ai
Requires Node.js 18 or later (uses the built-in fetch).
Usage
const Konect4ai = require('konect4ai');
const client = new Konect4ai({ licenseKey: 'YOUR-LICENSE-KEY' });
// Run a generated API
const data = await client.run('your-job-id');
console.log(data);
// Get the MCP endpoint for Claude, ChatGPT, Cursor and other MCP clients
console.log(client.mcpUrl());
// Get the RSS feed URL for a generated API
console.log(client.feedUrl('your-job-id'));
Self-hosted deployments
const client = new Konect4ai({
licenseKey: 'YOUR-LICENSE-KEY',
baseUrl: 'https://konect4ai.internal.example.com',
});
Getting a license key
Sign up at konect4ai.com. A 14-day free trial is available.
Links
- Website: https://konect4ai.com
- Setup guide: https://konect4ai.com/setup
- Pricing: https://konect4ai.com/zh-TW/pricing
- Contact: https://konect4ai.com/zh-TW/contact-us
License
MIT