Back to Stompy

Card snapshot

mcp.stompy.ai · 2026-05-19 16:48:12 UTC · 91d19688cdc37710db001031be284c7c4426f5735f2b44398dd07ff60f6d6c15

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "name": "Stompy",
  "description": "Persistent memory service for AI agents. Store, recall, and search context across sessions.",
  "url": "https://api.stompy.ai",
  "version": "6.4.4",
  "provider": {
    "organization": "Stompy AI",
    "url": "https://stompy.ai"
  },
  "documentation_url": "https://stompy.ai/docs",
  "skills": [
    {
      "id": "memory_store",
      "name": "Store Memory",
      "description": "Store a named memory/context with content, priority, and tags",
      "input_modes": [
        "application/json"
      ],
      "output_modes": [
        "application/json"
      ]
    },
    {
      "id": "memory_recall",
      "name": "Recall Memory",
      "description": "Semantic search across stored memories using hybrid vector + BM25",
      "input_modes": [
        "application/json"
      ],
      "output_modes": [
        "application/json"
      ]
    },
    {
      "id": "memory_search",
      "name": "Search Memory",
      "description": "Full-text and semantic search across all stored memories",
      "input_modes": [
        "application/json"
      ],
      "output_modes": [
        "application/json"
      ]
    },
    {
      "id": "memory_list",
      "name": "List Memories",
      "description": "List all stored memories for a project",
      "input_modes": [
        "application/json"
      ],
      "output_modes": [
        "application/json"
      ]
    },
    {
      "id": "memory_delete",
      "name": "Delete Memory",
      "description": "Delete a memory by topic name",
      "input_modes": [
        "application/json"
      ],
      "output_modes": [
        "application/json"
      ]
    },
    {
      "id": "document_ingest",
      "name": "Ingest Document",
      "description": "Upload and process documents for semantic search",
      "input_modes": [
        "multipart/form-data"
      ],
      "output_modes": [
        "application/json"
      ]
    },
    {
      "id": "project_list",
      "name": "List Projects",
      "description": "List all available memory projects",
      "input_modes": [
        "application/json"
      ],
      "output_modes": [
        "application/json"
      ]
    }
  ],
  "security_schemes": {
    "bearer": {
      "type": "http",
      "scheme": "bearer"
    },
    "oauth2": {
      "type": "oauth2",
      "flows": {
        "authorizationCode": {
          "authorizationUrl": "https://api.stompy.ai/oauth/authorize",
          "tokenUrl": "https://api.stompy.ai/oauth/token",
          "scopes": {
            "memory:read": "Read stored memories",
            "memory:write": "Store and update memories",
            "memory:delete": "Delete memories",
            "project:read": "List and view projects"
          }
        }
      }
    }
  },
  "default_input_modes": [
    "application/json"
  ],
  "default_output_modes": [
    "application/json"
  ],
  "pricing_url": "https://api.stompy.ai/api/v1/agent/pricing"
}