Filevine · Capability

Filevine Notes API — Notes

Filevine Notes — append, edit, and read project notes/activity items including typed kinds (note, task, portal message, phone call, text).

Filevine Notes API — Notes is a Naftiko capability published by Filevine, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 3 operations.

The capability includes 1 read-only operation and 2 state-changing operations. Lead operation: List notes on a Filevine project. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Filevine, Notes, Activity, and Legal.

Run with Naftiko FilevineNotesActivityLegal

MCP Tools

filevine-list-project-notes

List notes on a Filevine project.

read-only idempotent
filevine-create-note

Create a note on a Filevine project.

filevine-update-note

Update a Filevine note.

Capability Spec

notes-notes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Filevine Notes API — Notes
  description: 'Filevine Notes — append, edit, and read project notes/activity items including typed kinds (note, task, portal message, phone call, text).'
  tags:
  - Filevine
  - Notes
  - Activity
  - Legal
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    FILEVINE_BEARER: FILEVINE_BEARER
capability:
  consumes:
  - type: http
    namespace: notes-notes
    baseUri: https://api.filevine.io
    description: Filevine notes / activity surface.
    resources:
    - name: project-notes
      path: /core/projects/{projectId}/notes
      operations:
      - name: listProjectNotes
        method: GET
        description: List notes on a project.
        inputParameters:
        - name: projectId
          in: path
          type: integer
          required: true
      - name: createNote
        method: POST
        description: Create a new note on a project.
        inputParameters:
        - name: projectId
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          required: true
    - name: notes-id
      path: /core/notes/{noteId}
      operations:
      - name: updateNote
        method: PATCH
        description: Update a note.
        inputParameters:
        - name: noteId
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: 'Bearer {{env.FILEVINE_BEARER}}'
      placement: header
  exposes:
  - type: mcp
    namespace: notes-notes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Filevine notes.
    tools:
    - name: filevine-list-project-notes
      description: List notes on a Filevine project.
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: notes-notes.listProjectNotes
      with:
        projectId: tools.projectId
    - name: filevine-create-note
      description: Create a note on a Filevine project.
      hints: { readOnly: false, destructive: false, idempotent: false }
      call: notes-notes.createNote
      with:
        projectId: tools.projectId
        body: tools.body
    - name: filevine-update-note
      description: Update a Filevine note.
      hints: { readOnly: false, destructive: false, idempotent: false }
      call: notes-notes.updateNote
      with:
        noteId: tools.noteId
        body: tools.body