Dewey Archive Search

Dewey Archive Search is a Naftiko capability published by The Philadelphia Inquirer, one of 3 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

dewey-archive-search.yaml Raw ↑
name: Dewey Archive Search
description: >-
  Capability that issues a single `search_archive` call to a Dewey MCP server
  to retrieve cited article chunks from The Philadelphia Inquirer's news
  archive. Designed to be composed into AI agent research workflows that need
  authoritative local-news grounding for Philadelphia and Pennsylvania.
category: AI Search
trigger: on-demand
inputs:
- name: search_text
  type: string
  description: Search query. Use `*` together with filters for filter-only
    queries.
  required: true
- name: filters
  type: array
  description: Optional list of filter clauses (field + value, or field +
    start/end date range).
  items:
    type: object
- name: limit
  type: integer
  description: Max results (server cap is 20).
  default: 10
outputs:
- name: results
  type: array
  items:
    $ref: ../json-schema/dewey-search-result-schema.json
steps:
- name: invoke-search-archive
  call:
    mcp: dewey-mcp
    tool: search_archive
    input:
      search_text: "{{ search_text }}"
      filters: "{{ filters }}"
      limit: "{{ limit }}"