API Reference
Word & Character Counter
Count words, characters, sentences, and paragraphs instantly
Category: Text Tools · Execution: SERVER
Agent usage
This tool runs entirely in your browser runtime. No API key, no server round-trip. Fetch the manifest, import the module, call the function.
// 1. Fetch the manifest
const manifest = await fetch('https://itsfully.online/api/manifest.json').then(r => r.json());
// 2. Find this tool
const tool = manifest.categories
.flatMap(c => c.tools)
.find(t => t.apiName === 'word-char-counter');
// 3. Import and execute
const mod = await import('https://itsfully.online' + tool.clientModule);
const result = await mod['wordCount']({ /* input */ });
Module path
/client/tools/text-tools.js
Dynamic import this path from your agent runtime. No npm install, no bundler required.
Also by itsfully.online
Agentic AI in the Browser
Use-Cases for Privacy-First, Browser-Native Agentic Workflows
Published by itsfully.online · First edition — June 2026
$4.99
Get on Gumroad →