Claudeus WordPress MCP

  • postman
{ "info": { "_postman_id": "b4ddfb19-1edd-4b28-a859-3802788894c8", "name": "File-Context-MCP", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "_exporter_id": "24037082" }, "item": [ { "name": "List files", "request": { "auth": { "type": "noauth" }, "method": "GET", "header": [], "url": { "raw": "http://localhost:3001/api/files?path=./storage", "protocol": "http", "host": [ "localhost" ], "port": "3001", "path": [ "api", "files" ], "query": [ { "key": "path", "value": "./storage" } ] } }, "response": [] }, { "name": "Query", "request": { "auth": { "type": "noauth" }, "method": "POST", "header": [], "body": { "mode": "raw", "raw": "{\r\n \"path\": \"./storage/code-samples/example.ts\",\r\n \"query\": \"Explain what this TypeScript code does\",\r\n \"model\": \"ollama\"\r\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:3001/api/query", "protocol": "http", "host": [ "localhost" ], "port": "3001", "path": [ "api", "query" ] } }, "response": [] }, { "name": "Analyze multiple files", "request": { "auth": { "type": "noauth" }, "method": "POST", "header": [], "body": { "mode": "raw", "raw": "{\r\n \"path\": \"./storage\",\r\n \"query\": \"What types of files are in this directory and summarize their contents?\",\r\n \"model\": \"ollama\"\r\n}", "options": { "raw": { "language": "json" } } }, "url": { "raw": "http://localhost:3001/api/query", "protocol": "http", "host": [ "localhost" ], "port": "3001", "path": [ "api", "query" ] } }, "response": [] }, { "name": "File Upload", "request": { "auth": { "type": "noauth" }, "method": "POST", "header": [], "body": { "mode": "formdata", "formdata": [ { "key": "file", "type": "file", "src": "/C:/Users/btate/Downloads/lover.yml" } ] }, "url": { "raw": "http://localhost:3001/api/files/upload", "protocol": "http", "host": [ "localhost" ], "port": "3001", "path": [ "api", "files", "upload" ] } }, "response": [] } ] }