io.github.jrlprost/filoo-mcp
NPM · @FILOOAPP/MCP-SERVER · SCANNED AUG 3
Create short links, fetch click analytics, and generate QR codes via the filoo.app API.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 74 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability83
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 825 tokens (~91/item across 9 items; 9 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @filooapp/mcp-server
claude mcp add jrlprost-filoo-mcp -- npx -y @filooapp/mcp-server
codex mcp add jrlprost-filoo-mcp -- npx -y @filooapp/mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"jrlprost-filoo-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@filooapp/mcp-server"
],
"enabled": true
}
}
} openclaw mcp add jrlprost-filoo-mcp --command npx --arg -y --arg @filooapp/mcp-server
mcp_servers:
jrlprost-filoo-mcp:
command: "npx"
args: ["-y", "@filooapp/mcp-server"] {
"mcpServers": {
"jrlprost-filoo-mcp": {
"command": "npx",
"args": [
"-y",
"@filooapp/mcp-server"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +31
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Security disclosure: fail → unverified ▼ functional
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- First check of Schema quality: unverified functional
- Licence: MIT functional
- 1 Aug 26 +15
- Malware scan: unverified → pass ▲ security
- 31 Jul 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@filooapp/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
filoo_create_link ~171
Create a new short link on filoo. Returns the short_url (filoo.app/{username}/{slug}) and the link code. Use this whenever an agent needs to shorten a URL, hand a clean URL to a user, generate a QR-friendly link, or attach click tracking to an outbound URL. Counts against the daily creation quota and active link cap — call filoo_usage first if unsure.
| Name | Type | Req | Description |
|---|---|---|---|
| destination | string | yes | The long URL to shorten (http or https). |
| label | string | — | Optional private label shown only in the dashboard. |
| slug | string | — | Optional custom slug like 'spring-sale'. Alphanumeric + hyphens, 1–64 chars. Auto-generated if omitted. |
| username | string | — | Username to publish under. Defaults to the user's primary username. |
No output schema declared.
No examples provided.
filoo_delete_link ~76
Permanently delete a filoo short link. The short_url stops resolving (returns 404). Click history is preserved on the filoo side for analytics. This action cannot be undone — confirm with the user before calling unless they explicitly asked to delete.
| Name | Type | Req | Description |
|---|---|---|---|
| code | string | yes | Link code in the form 'username:slug'. |
No output schema declared.
No examples provided.
filoo_get_link ~81
Get full details for one filoo short link by code. The code format is 'username:slug' (the colon is URL-encoded automatically). Returns destination, label, active flag, created_at, and short_url.
| Name | Type | Req | Description |
|---|---|---|---|
| code | string | yes | Link code in the form 'username:slug', e.g. 'agency:campaign-1'. |
No output schema declared.
No examples provided.
filoo_link_stats ~80
Get click/scan analytics for one filoo short link: total clicks, unique visitors, bot count, top countries, and top traffic sources (including QR-code sources). Use to answer questions like 'how is my campaign link doing?' or to compare performance across links.
| Name | Type | Req | Description |
|---|---|---|---|
| code | string | yes | Link code in the form 'username:slug'. |
No output schema declared.
No examples provided.
filoo_list_links ~100
List the authenticated user's short links, newest first, cursor-paginated. Returns items[] with code, short_url, destination, created_at, plus a cursor to fetch the next page. Use to inventory existing links before creating a new one (avoid duplicates) or to find a link by destination.
| Name | Type | Req | Description |
|---|---|---|---|
| cursor | string | — | Pagination cursor from a previous call. |
| limit | integer | — | Page size, max 100. Default 20. |
No output schema declared.
No examples provided.
filoo_list_usernames ~62
List every username the authenticated user owns on filoo, along with which one is primary. Short links live under a username (filoo.app/{username}/{slug}), so this is the canonical way for an agent to discover what namespaces it can publish into.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
filoo_me ~73
Get the authenticated filoo user's account: tier (free/solo/pro/agents/lifetime), owned usernames, boost credits, and tier limits (active links cap, links-per-day quota, API rate limit). Call this first when an agent needs to know what username to publish under or how much headroom is left.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
filoo_update_link ~130
Update a filoo short link in place: change its destination (the previous destination is kept in the audit history so the short URL is safe to repoint), edit its label, or disable/re-enable it with active. The short_url itself never changes. Useful for keeping a stable short URL while migrating the target.
| Name | Type | Req | Description |
|---|---|---|---|
| active | boolean | — | Set false to disable the link, true to re-enable. |
| code | string | yes | Link code in the form 'username:slug'. |
| destination | string | — | New long URL to redirect to. |
| label | string | — | New private label. |
No output schema declared.
No examples provided.
filoo_usage ~52
Get today's filoo usage versus quotas: links created today, daily creation cap, API calls today, active link count, active link cap, remaining boost credits. Use before bulk-creating links to avoid hitting limits.
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.