{
  "schema_version": "1.0.0",
  "name": "Ambition Innovation Creativity",
  "description": "Engineering studio delivering AI search optimization, semantic discovery systems, agentic AI with human oversight, and intelligent cloud architectures that position AI as a companion to augment human intelligence.",
  "homepage": "https://ambitioninnovationcreativity.com",
  "contact_email": "contact@ambitioninnovationcreativity.com",
  "logo_url": "https://ambitioninnovationcreativity.com/logo.svg",
  "capabilities": {
    "resources": true,
    "tools": true,
    "prompts": false,
    "sampling": false
  },
  "ai_context": "https://ambitioninnovationcreativity.com/ai-context.json",
  "openapi": "https://ambitioninnovationcreativity.com/openapi.yaml",
  "transport": {
    "type": "openapi",
    "spec_url": "https://ambitioninnovationcreativity.com/openapi.yaml",
    "operations": [
      {
        "operation_id": "listBlogPosts",
        "method": "GET",
        "path": "/api/blog",
        "auth": "none"
      },
      {
        "operation_id": "getLatestBlogPost",
        "method": "GET",
        "path": "/api/blog/latest",
        "auth": "none"
      },
      {
        "operation_id": "searchContent",
        "method": "GET",
        "path": "/api/search",
        "auth": "none"
      },
      {
        "operation_id": "searchContentPost",
        "method": "POST",
        "path": "/api/search",
        "auth": "none"
      }
    ]
  },
  "authentication": {
    "type": "none"
  },
  "tools": [
    {
      "name": "list_blog_posts",
      "description": "Retrieve normalized metadata for the latest AIC Blog dispatches.",
      "input_schema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 20,
            "description": "Optional number of posts to return (default all)."
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "slug": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "excerpt": {
                  "type": "string"
                },
                "theme": {
                  "type": "string"
                },
                "publishedAt": {
                  "type": "string"
                },
                "updatedAt": {
                  "type": "string"
                },
                "topics": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "tone": {
                  "type": "string"
                },
                "audioMood": {
                  "type": "string"
                },
                "aiSummary": {
                  "type": "string"
                },
                "cta": {
                  "type": "object",
                  "properties": {
                    "label": {
                      "type": "string"
                    },
                    "href": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "integration": {
        "type": "openapi_operation",
        "operation_id": "listBlogPosts"
      }
    },
    {
      "name": "search_content",
      "description": "Perform semantic search across AIC services, labs experiments, blog posts, and content using natural language queries. Returns ranked results with deep linking metadata for precise section navigation.",
      "input_schema": {
        "type": "object",
        "required": [
          "query"
        ],
        "properties": {
          "query": {
            "type": "string",
            "description": "Natural language search query (e.g., 'AI search optimization', 'semantic search', 'agentic AI systems', 'cloud architecture')"
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "schema": {
            "type": "string",
            "description": "API schema version (e.g., v1)"
          },
          "query": {
            "type": "string",
            "description": "The processed search query"
          },
          "count": {
            "type": "integer",
            "description": "Number of results found"
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string"
                },
                "type": {
                  "type": "string",
                  "enum": ["service", "labs-focus", "labs-experiment", "blog", "page"]
                },
                "itemType": {
                  "type": "string",
                  "enum": ["service", "labs-focus", "labs-experiment", "blog", "page"],
                  "description": "Entity type for AI classification and entity recognition"
                },
                "category": {
                  "type": "string",
                  "description": "Category (e.g., 'services', 'focus-areas')"
                },
                "title": {
                  "type": "string"
                },
                "summary": {
                  "type": "string",
                  "description": "Short summary or excerpt"
                },
                "content": {
                  "type": "string"
                },
                "url": {
                  "type": "string",
                  "description": "Absolute page URL"
                },
                "deepLink": {
                  "type": "string",
                  "description": "Complete deep link URL with section anchor (ready to use)"
                },
                "sectionId": {
                  "type": "string",
                  "description": "Section anchor for deep linking"
                },
                "excerpt": {
                  "type": "string"
                },
                "keywords": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Combined keywords for AI indexing"
                },
                "topics": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "technologies": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "similarity": {
                  "type": "number",
                  "description": "Match score 0.0-1.0 (>0.6 is highly relevant)"
                }
              }
            }
          }
        }
      },
      "integration": {
        "type": "openapi_operation",
        "operation_id": "searchContent"
      }
    }
  ],
  "resources": [
    {
      "name": "ai_context",
      "description": "Structured context for assistants",
      "url": "https://ambitioninnovationcreativity.com/ai-context.json",
      "content_type": "application/json"
    },
    {
      "name": "ai_plugin_manifest",
      "description": "OpenAI-compatible AI Plugin manifest",
      "url": "https://ambitioninnovationcreativity.com/.well-known/ai-plugin.json",
      "content_type": "application/json"
    },
    {
      "name": "blog_rss_feed",
      "description": "RSS feed of AIC Blog dispatches",
      "url": "https://ambitioninnovationcreativity.com/blog/feed.xml",
      "content_type": "application/rss+xml"
    },
    {
      "name": "blog_json_feed",
      "description": "JSON feed of AIC Blog dispatches",
      "url": "https://ambitioninnovationcreativity.com/blog/feed.json",
      "content_type": "application/feed+json"
    }
  ]
}
