@inf-mcp/mcp-server 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @inf-mcp/mcp-server
2
2
 
3
- Connect AI coding assistants to the [Inflectiv](https://app.inflectiv.ai) platform. Create agents, manage knowledge, search your data, build skills from project memories, browse marketplaces, and chat — all from your IDE.
3
+ Connect AI coding assistants to the [Inflectiv](https://app.inflectiv.ai) platform. Create agents, manage knowledge, search your data, browse marketplaces, and chat — all from your IDE.
4
4
 
5
5
  ## Quick Start
6
6
 
@@ -144,11 +144,11 @@ Run `npx -y @inf-mcp/mcp-server` with the `INFLECTIV_API_KEY` environment variab
144
144
  | Key Format | Scope | Use Case |
145
145
  |------------|-------|----------|
146
146
  | `inf_*` | Single dataset | Dataset-specific operations |
147
- | `inf_global_*` | Full account | Skills, marketplace, multi-dataset access |
147
+ | `inf_global_*` | Full account | Marketplace, multi-dataset access |
148
148
 
149
149
  ---
150
150
 
151
- ## Tools (40)
151
+ ## Tools (26)
152
152
 
153
153
  ### Agents (8) — requires API key
154
154
 
@@ -203,50 +203,21 @@ Run `npx -y @inf-mcp/mcp-server` with the `INFLECTIV_API_KEY` environment variab
203
203
 
204
204
  **Events:** `intelligence.processed`, `intelligence.failed`, `intelligence.deduped`, `dataset.mode_changed`
205
205
 
206
- ### Memory (5) — no API key needed
207
-
208
- Local-only tools. Memories are stored in `.inflectiv/memory/` in the project root. Works completely offline.
209
-
210
- | Tool | Description | Credits |
211
- |------|-------------|---------|
212
- | `inflectiv_write_memory` | Write a memory entry with category, tags, importance | Free |
213
- | `inflectiv_list_memories` | List memories with optional filters | Free |
214
- | `inflectiv_search_memories` | Keyword search over local memories | Free |
215
- | `inflectiv_delete_memory` | Delete a memory entry by ID | Free |
216
- | `inflectiv_suggest_skill_creation` | Analyze memories and recommend if ready for skill creation | Free |
217
-
218
- ### Skills (6) — requires API key
206
+ ### Marketplace (2) — public, no auth required
219
207
 
220
208
  | Tool | Description | Credits |
221
209
  |------|-------------|---------|
222
- | `inflectiv_create_skill` | Synthesize memories into a reusable skill document | 5 |
223
- | `inflectiv_apply_skill` | Apply a skill to an agent (injects into system prompt + RAG) | 2 |
224
- | `inflectiv_list_skills` | List owned and acquired skills | Free |
225
- | `inflectiv_scan_skill_security` | Preview security scan before creating (passes 1-4) | Free |
226
- | `inflectiv_use_skill` | Load a skill into the current session (ephemeral for paid, persistable for free/owned) | Free |
227
- | `inflectiv_install_skill` | Install a free/owned skill as a `.claude/commands/` slash command | Free |
228
-
229
- ### Marketplace (5) — browsing is public, acquiring requires API key
230
-
231
- | Tool | Description | Credits | Auth |
232
- |------|-------------|---------|------|
233
- | `inflectiv_browse_skill_marketplace` | Browse published skills with search & filters | Free | None |
234
- | `inflectiv_get_skill_listing` | Get skill listing detail | Free | None |
235
- | `inflectiv_acquire_skill` | Acquire a skill (free or paid) | Varies | API key |
236
- | `inflectiv_browse_dataset_marketplace` | Browse published datasets | Free | None |
237
- | `inflectiv_browse_agent_marketplace` | Browse published agents | Free | None |
210
+ | `inflectiv_browse_dataset_marketplace` | Browse published datasets with search & filters | Free |
211
+ | `inflectiv_browse_agent_marketplace` | Browse published agents with search & filters | Free |
238
212
 
239
213
  ### Auth Summary
240
214
 
241
215
  | Category | Count | API Key? |
242
216
  |----------|-------|----------|
243
- | Memory (local-only) | 5 | No |
244
- | Marketplace browsing | 4 | No |
245
- | **Subtotal (no key)** | **9** | |
217
+ | Marketplace browsing | 2 | No |
218
+ | **Subtotal (no key)** | **2** | |
246
219
  | Agents, Datasets, Files, Webhooks, Knowledge | 24 | Yes |
247
- | Skills | 6 | Yes |
248
- | Marketplace acquire | 1 | Yes |
249
- | **Subtotal (key required)** | **31** | |
220
+ | **Subtotal (key required)** | **24** | |
250
221
 
251
222
  ---
252
223
 
@@ -261,36 +232,11 @@ Local-only tools. Memories are stored in `.inflectiv/memory/` in the project roo
261
232
  "Write this text as intelligence: <your knowledge>"
262
233
  "Register a webhook at https://example.com/hook for processed events"
263
234
 
264
- Memory (works offline, no API key):
265
- "Remember that we use Tailwind CSS with the 'cn' helper"
266
- "List all my project memories"
267
- "Search memories for database migration"
268
- "Am I ready to create a skill from my memories?"
269
-
270
- Skills:
271
- "Create a skill from my memories called 'React Patterns'"
272
- "Apply skill 12 to agent 5"
273
- "Scan this skill content for security issues"
274
- "Use skill 12 in this session"
275
- "Install skill 12 as a slash command"
276
-
277
235
  Marketplace (browsing works without API key):
278
- "Browse the skill marketplace for Python tools"
279
236
  "Show me the top-rated agent listings"
280
- "Acquire skill listing 42"
237
+ "Browse the dataset marketplace for Python tutorials"
281
238
  ```
282
239
 
283
- ## Web Dashboard
284
-
285
- Skills can also be managed through the Inflectiv web UI at [app.inflectiv.ai](https://app.inflectiv.ai):
286
-
287
- - **`/skills`** — View your skills, acquired skills, and marketplace listings
288
- - **`/skills/sell`** — Create a marketplace listing for a skill (security screening required)
289
- - **`/marketplace`** (Skills tab) — Browse and acquire skills from the community
290
- - **`/marketplace/skills/{id}`** — Skill detail page with reviews
291
-
292
- Skills are delivered encrypted via the MCP server only — the web UI is for management, browsing, and selling, not content access.
293
-
294
240
  ---
295
241
 
296
242
  ## Resources