ClaudeChatGPTPerplexityGeminiMicrosoft CopilotRaycastMeta AIGrokZ.aiQwenKimi
DeepSeekMistralCursorVS CodeWindsurfJetBrainsClineLovableVercel AI SDKLangChain

Use Knack with your AI.

Connect your account once and let the AI you already use work with it, without building another integration. Manage your Knack database. list objects, query records, and perform CRUD operations via natural language.

Included with plan

Ask AI about this Connector

Developed, maintained, and hosted by Vinkius.

MCP VERIFIED · PRODUCTION READY · VINKIUS GUARANTEED

Waiting for input…

Works with modern AI clients that support MCP, including ChatGPT, Claude, Cursor, and more.

ChatGPTClaudeCursorPerplexityGeminiMicrosoft CopilotRaycastMeta AI

Complete set · 10 capabilities

The complete Knack capability set.

These are the exact actions your AI can choose when you ask it to work with Knack.

Capability set01 / 03

01-04

4 capabilities in this set.

Part of 10 available through Knack.

  1. 01

    Get object schema

    Returns metadata including the object name, key, and high-level structure. Use this to verify you are working with the correct database table. Get the schema of a specific Knack object

  2. 02

    List objects

    This is the first step to understand the database structure and find the "Object Key" needed for record operations. List all objects in the Knack application

  3. 03

    List object fields

    This is crucial for understanding the data types and identifying the field keys (field_1, field_2, etc.) needed for creating or updating records. List all fields for a specific Knack object

  4. 04

    Create record

    You must provide the data as a JSON string where keys are the field keys (e.g., field_1). Ensure you have checked the object schema first to know which fields are required. Create a new record in a Knack object

Capability set02 / 03

05-07

3 capabilities in this set.

Part of 10 available through Knack.

  1. 05

    Delete record

    Use with caution as this action cannot be undone. Delete a record from a Knack object

  2. 06

    Get record

    Requires both the object_key and the record_id. Use this for detailed auditing of a specific entry. Get a specific record by ID

  3. 07

    List account applications

    Use this to verify access or discover application IDs. List all applications in the account

Capability set03 / 03

08-10

3 capabilities in this set.

Part of 10 available through Knack.

  1. 08

    List records

    You must provide the object_key. Use this to browse the actual data stored in your database. List records for a specific Knack object

  2. 09

    Search records

    The filters must be provided as a JSON string following the Knack Filter format (e.g., "[{\"field\":\"field_1\", \"operator\":\"is\", \"value\":\"test\"}]"). Search for records using filters

  3. 10

    Update record

    Provide only the fields you wish to change in the JSON string data. This is a partial update. Update an existing record in a Knack object

Observed, not estimated

888ms average. Fast in production.

Knack is checked daily against the live service.

Daily averagePeak 1105ms
Aug 20Today
Fastest day
757ms
Slowest day
1105ms
14-day trend
Slowing+36%

Connect your client

One URL. Every client.

Activate the Connector, copy your link, and paste it into the client you already use. 10 capabilities arrive ready to run.

Preview access · not provider authentication

The vk_preview_* token belongs to Vinkius preview infrastructure. It lets Claude discover and display the capabilities of Knack, so you can see the experience inside your AI.

It does not authenticate your account with Knack. Actions requiring credentials or live account data may not run until you activate the Connector and authorize the service.

Knack Connector

You're all set. Choose your MCP client and follow the setup instructions.

Connector linkhttps://edge.vinkius.com/vk_preview_8zkaxFp7kroPXR5bPCZcLTjzvvjnB0tvy386FSph/mcp

Claude Desktop

Follow the steps below to connect in seconds.

  1. 1In Claude Desktop, open Settings → Connectors.
  2. 2Click “Add custom connector” and paste the connector link above as the remote MCP server URL.
  3. 3Click Add and start a new chat — Knack capabilities are ready to use.
Configuration · claude_desktop_config.jsonCopy
{
  "mcpServers": {
    "knack-mcp": {
      "url": "https://edge.vinkius.com/vk_preview_8zkaxFp7kroPXR5bPCZcLTjzvvjnB0tvy386FSph/mcp"
    }
  }
}
  • Claude
  • ChatGPT
  • Cursor
  • VS Code
  • Windsurf
  • Claude Code
  • JetBrains
  • Cline

Step-by-step instructions for each client are in the guide. How to connect

FAQ

Questions Knack owners ask.

  • 01

    How do I find the Object Key for a specific table?

    Use the list_objects capability. It will return all data objects in your application along with their names and unique keys (e.g., object_1). Use these keys for all subsequent record operations.

  • 02

    Can I search records using multiple conditions?

    Yes. Use the search_records capability and provide a JSON array of filter objects. For example: [{"field":"field_1", "operator":"is", "value":"active"}, {"field":"field_2", "operator":"contains", "value":"premium"}].

  • 03

    How do I know which fields to use when creating a record?

    Use the list_object_fields capability with the target object_key. It will list all fields, their types, and their keys (e.g., field_1), which you must use as property names in your data JSON.