diff --git a/apps/web/src/app/about/page.tsx b/apps/web/src/app/about/page.tsx index e5b9706d..74eb6df9 100644 --- a/apps/web/src/app/about/page.tsx +++ b/apps/web/src/app/about/page.tsx @@ -1,12 +1,10 @@ import Link from 'next/link' import { DotsSection } from '@/components/dots-section' +import { Markdown } from '@/components/markdown' import { PageContainer } from '@/components/page-container' import { SupplySideCTA } from '@/components/supply-side-cta' import { githubUrl, twitterUrl } from '@/lib/config' -import { cn } from '@/lib/utils' - -import styles from './styles.module.css' export default function AboutPage() { return ( @@ -15,57 +13,58 @@ export default function AboutPage() { About -
-

Setting the stage

+
+ +

Setting the stage

-

- It's 2025. LLMs are still scaling. AI agents are just starting to take - off. MCP is exploding. The singularity looms. Shoggoth looks back on - us from the near future and gives a sly smile that doesn't quite reach - His inhuman eyes. -

+

+ It's 2025. LLMs are still scaling. AI agents are just starting to + take off. MCP is exploding. The singularity looms. Shoggoth looks + back on us from the near future and gives a sly smile that doesn't + quite reach His inhuman eyes. +

-

- In this increasingly AI-native world, what's the best way for "normal" - software engineers like us to stay relevant and provide value for both - our families as well as our future AI edgelords? -

+

+ In this increasingly AI-native world, what's the best way for + "normal" software engineers like us to stay relevant and provide + value for both our families as well as our future AI edgelords? +

-

- Well, I don't know about you, but contributing to foundation models, - AI alignment, and AGI research all seem incredibly sexy but are also a - lil outside my areas of expertise. -

+

+ Well, I don't know about you, but contributing to foundation models, + AI alignment, and AGI research all seem incredibly sexy but are also + a lil outside my areas of expertise. +

-

- That's why Agentic is focused solely on building value at the LLM tool - calling layer. MCPs are a great example here. -

+

+ That's why Agentic is focused solely on building value at the LLM + tool calling layer. MCPs are a great example here. +

-

- There's a lot that will change in AI over the next decade, but one - thing I believe strongly is that no matter how much the underlying AI - systems change,{' '} - - providing access to high quality tools that are specifically - designed and optimized for agents will become increasingly important - over time - - . -

+

+ There's a lot that will change in AI over the next decade, but one + thing I believe strongly is that no matter how much the underlying + AI systems change,{' '} + + providing access to high quality tools that are specifically + designed and optimized for agents will become increasingly + important over time + + . +

-

- We call this Agentic UX, and - it's at the heart of Agentic's mission. -

+

+ We call this Agentic UX, and + it's at the heart of Agentic's mission. +

-

Mission

-

- Agentic's mission is to provide the world's best library of tools for - AI agents. -

+

Mission

+

+ Agentic's mission is to provide the world's best library of tools + for AI agents. +

- {/*

What is Agentic UX?

+ {/*

What is Agentic UX?

Agentic User Experience measures how optimized a resource is for consumption by LLM-based apps and more autonomous AI agents. @@ -83,100 +82,101 @@ export default function AboutPage() { similar aims. [xkcd standards]

*/} -

Team

-

- Agentic was founded in 2023 by{' '} - - Travis Fischer - {' '} - (hey hey 👋) . We're backed by{' '} - - HF0 - - ,{' '} - - Backend Capital - - , and - - Transpose Capital - - . -

+

Team

+

+ Agentic was founded in 2023 by{' '} + + Travis Fischer + {' '} + (hey hey 👋) . We're backed by{' '} + + HF0 + + ,{' '} + + Backend Capital + + , and + + Transpose Capital + + . +

-

- I'm currently running Agentic as a solo founder while traveling around - the world, but i'm actively looking to hire a few remote engineers and - would consider bringing on a co-founder if they're a really strong - fit. -

+

+ I'm currently running Agentic as a solo founder while traveling + around the world, but i'm actively looking to hire a few remote + engineers and would consider bringing on a co-founder if they're a + really strong fit. +

-

- If you're an expert TypeScript dev who vibes with our mission and - loves open source – and if you have an interest in AI engineering, AI - agents, API gateways, OpenAPI, MCP, AI codegen, etc, feel free to{' '} - - DM me on twitter - - , and please include a few links to your GitHub + related projects. -

+

+ If you're an expert TypeScript dev who vibes with our mission and + loves open source – and if you have an interest in AI engineering, + AI agents, API gateways, OpenAPI, MCP, AI codegen, etc, feel free to{' '} + + DM me on twitter + + , and please include a few links to your GitHub + related projects. +

-

- (this page was written with love and an intentional lack of LLM - assistance on a very long and sleepy international flight 💕) -

+

+ (this page was written with love and an intentional lack of LLM + assistance on a very long and sleepy international flight 💕) +

-

Tech stack

-
    -
  • TypeScript
  • -
  • Node.js
  • -
  • Postgres
  • -
  • Drizzle ORM
  • -
  • Hono
  • -
  • Stripe
  • -
  • Cloudflare Workers
  • -
  • Vercel
  • -
  • Sentry
  • -
  • Resend
  • -
  • Cursor
  • -
+

Tech stack

+
    +
  • TypeScript
  • +
  • Node.js
  • +
  • Postgres
  • +
  • Drizzle ORM
  • +
  • Hono
  • +
  • Stripe
  • +
  • Cloudflare Workers
  • +
  • Vercel
  • +
  • Sentry
  • +
  • Resend
  • +
  • Cursor
  • +
-

- - Check out the source on GitHub for more details - - . -

+

+ + Check out the source on GitHub for more details + + . +

+
{/* CTA section */} diff --git a/apps/web/src/app/contact/page.tsx b/apps/web/src/app/contact/page.tsx index 21e086ee..9eae8ff5 100644 --- a/apps/web/src/app/contact/page.tsx +++ b/apps/web/src/app/contact/page.tsx @@ -36,7 +36,7 @@ export default function AboutPage() { {/* CTA section */} -
+
DM me on Twitter / X diff --git a/apps/web/src/app/privacy/page.tsx b/apps/web/src/app/privacy/page.tsx new file mode 100644 index 00000000..a789d662 --- /dev/null +++ b/apps/web/src/app/privacy/page.tsx @@ -0,0 +1,258 @@ +import Link from 'next/link' + +import { Markdown } from '@/components/markdown' +import { PageContainer } from '@/components/page-container' + +const lastUpdatedDate = 'June 30, 2025' + +export default function AboutPage() { + return ( + +

+ Privacy Policy +

+ +
+ +

+ Last updated: {lastUpdatedDate} +

+ +

1. Overview

+

+ Agentic Systems, Inc. ("Agentic",{' '} + "we","us", or{' '} + "our") provides a modern AI platform comprised of: +

+ +
    +
  • + Marketplace – a curated directory of LLM-powered + tool products that can be called via the Model Context Protocol + ("MCP") or standard HTTP APIs. +
  • + +
  • + Gateway – a fully-managed MCP gateway that allows + developers to deploy, monetize, and optionally publish their own + MCP or OpenAPI products. +
  • + +
  • + Open-Source Project – the Agentic + source-available codebase released under the GNU AGPL-3.0 + license. +
  • +
+ +

+ This Privacy Policy explains how we collect, use, disclose, and + safeguard information in connection with the Agentic website, + console, Marketplace, Gateway, and any related services + (collectively, the "Service"). +

+ +

2. Information We Collect

+

+ We collect the following categories of information when you use the + Service: +

+ +
    +
  • + Account Information: name, email, billing + address, and authentication credentials that you provide when you + create an Agentic account. +
  • + +
  • + Payment Information: payment method details + (e.g. card type and last four digits) processed by Stripe on + our behalf. Stripe's privacy practices are described in its own + policy. +
  • + +
  • + Usage Data: log files, API request metadata, IP + address, browser type, referring pages, and other diagnostic + information automatically collected when you interact with the + Service. +
  • + +
  • + Developer Content: API specifications, + configuration, and other content that you upload to the Gateway or + Marketplace. +
  • + +
  • + Cookies & Similar Technologies: small data + files placed on your device to enable site functionality, + analytics, and preference storage. You can disable cookies in your + browser settings, but parts of the Service may not function + properly. +
  • +
+ +

3. How We Use Information

+

We use the information we collect to:

+ +
    +
  • Provide, maintain, and improve the Service;
  • + +
  • + Facilitate Marketplace and Gateway transactions, including billing + through Stripe; +
  • + +
  • Authenticate users and secure the Service;
  • + +
  • + Monitor usage and detect, prevent, or address technical issues or + fraudulent activity; +
  • + +
  • + Respond to inquiries, provide customer support, and send + administrative messages; +
  • + +
  • + Send product updates, promotional communications, or other + information that may be of interest to you (you may opt out at any + time); +
  • + +
  • Carry out research, analytics, and product development;
  • + +
  • + Comply with legal obligations and enforce our Terms of Service. +
  • +
+ +

4. Sharing & Disclosure

+

We may share information as follows:

+ +
    +
  • + Service Providers: with vendors who perform + services on our behalf, such as hosting, analytics, and payment + processing. +
  • + +
  • + API Providers & Consumers: Marketplace + product owners may receive usage metrics related to their own + products; conversely, when you list a product we may display your + developer profile to potential consumers. +
  • + +
  • + Business Transfers: as part of a merger, + acquisition, financing, or sale of assets. +
  • + +
  • + Affiliates: with our corporate affiliates who are + bound to honor this policy. +
  • + +
  • + Legal Requirements: when required to comply with + law or protect the rights, property, or safety of Agentic, our + users, or the public. +
  • + +
  • + With Your Consent: in any other situation where + you direct us to share the information. +
  • +
+ +

5. Payments via Stripe

+

+ All Marketplace purchases and Gateway subscription fees are + processed by Stripe. Agentic does not store full payment-card + numbers or CVC codes. Stripe acts as a separate controller of your + payment information – please review the{' '} + + Stripe Privacy Policy + {' '} + for details. +

+ +

6. Data Retention

+

+ We retain information for as long as necessary to fulfill the + purposes described in this Policy, comply with our legal + obligations, resolve disputes, and enforce our agreements. Log data + is typically retained for no more than 18 months unless we are + legally required to keep it longer. +

+ +

7. International Transfers

+

+ We are a U.S.-based company and may process information in the + United States and other countries where we or our service providers + operate. We rely on appropriate safeguards, such as Standard + Contractual Clauses, for the transfer of personal data from the + EU/EEA, UK, and Switzerland. +

+ +

8. Security

+

+ We employ technical and organizational measures designed to protect + information against loss, misuse, and unauthorized access or + disclosure. However, no system can be guaranteed to be 100% secure. +

+ +

9. Your Rights

+

+ Depending on your jurisdiction, you may have rights to access, + rectify, delete, restrict, or object to our processing of your + personal information, as well as the right to data portability and + to withdraw consent. To exercise these rights, please contact us as + set forth below. We respond to all requests consistent with + applicable law. +

+ +

10. Children's Privacy

+

+ The Service is not directed to children under 13, and we do not + knowingly collect personal information from children. If you believe + a child has provided us with personal information, please contact us + and we will take steps to delete such information. +

+ +

11. Third-Party Links

+

+ The Service may contain links to third-party websites. We are not + responsible for the privacy practices of those sites. We encourage + you to review the privacy policies of every site you visit. +

+ +

12. Changes to This Policy

+

+ We may update this Privacy Policy from time to time. We will post + the revised version on this page and indicate the date of the latest + revision at the top. If changes are material, we will provide + additional notice (e.g., email or in-app alert) at least 7 days + before they take effect. +

+ +

13. Contact Us

+

+ If you have any questions or concerns about this Privacy Policy or + our privacy practices, please{' '} + contact us or email us at{' '} + support@agentic.so. +

+
+
+
+ ) +} diff --git a/apps/web/src/app/terms/page.tsx b/apps/web/src/app/terms/page.tsx new file mode 100644 index 00000000..bcca0a2c --- /dev/null +++ b/apps/web/src/app/terms/page.tsx @@ -0,0 +1,243 @@ +import Link from 'next/link' + +import { Markdown } from '@/components/markdown' +import { PageContainer } from '@/components/page-container' + +const lastUpdatedDate = 'June 30, 2025' + +export default function AboutPage() { + return ( + +

+ Terms of Service +

+ +
+ +

+ Last updated: {lastUpdatedDate} +

+ +

1. Introduction

+

+ These Terms of Service ("Terms") govern your access + to and use of Agentic Systems, Inc.'s websites, software, and + related services (collectively, the "Service"). + Agentic ("Agentic," "we," "us," or{' '} + "our") provides three distinct but connected + offerings: +

+ +

+ (a) Agentic Marketplace – A curated app store of + LLM tool products exposed via both Model Context Protocol (MCP) and + standard HTTP APIs. +

+ +

+ (b) Agentic Gateway – A fully managed MCP gateway + that enables developers to deploy and monetize their own MCP or + OpenAPI products, whether privately or publicly. +

+ +

+ (c) Agentic Open-Source Project – The + source-available software released under the GNU AGPL-3.0 + license. +

+ +

+ By creating an account, clicking "I agree," or otherwise using + any part of the Service, you acknowledge that you have read, + understood, and agree to be legally bound by these Terms. If you do + not agree, you must not access or use the Service. +

+ +

2. Eligibility & Account Registration

+

+ You must be at least 18 years old and legally capable of + entering into contracts to use the Service. When you register an + Agentic account you agree to (i) provide accurate, current, and + complete information; (ii) maintain the security of your + credentials; and (iii) promptly update your information as + necessary. You are responsible for all activity occurring under your + account. +

+ +

3. Plans, Subscriptions & Fees

+

+ Pricing for Marketplace purchases and Gateway subscriptions is + described on the applicable order page or pricing dashboard. All + charges are processed by Stripe and are due within the payment + period stated at checkout. Except as required by law, payments are + non-refundable. We may modify our pricing with at least 30 + days' notice, which will take effect in your next billing cycle. + Developers publishing products to the Agentic Marketplace must also + agree to the{' '} + + Stripe Connect Account Agreement + + . +

+ +

4. Marketplace-Specific Terms

+

+ (a) API Consumers. When you purchase access to a + product in the Marketplace you receive a non-exclusive, + non-transferable, revocable license to call that API subject to any + usage limits and other terms displayed on the product page. +

+ +

+ (b) API Providers. If you list a product in the + Marketplace you (i) represent that you have all rights necessary to + offer the product; (ii) grant each purchaser the license described + above; and (iii) authorize Agentic to collect payments on your + behalf and remit amounts owed to you, less any platform fees. +

+ +

5. Gateway-Specific Terms

+

+ You may deploy private or public APIs through the Gateway. You are + solely responsible for the security, legality, and performance of + the APIs you deploy. If you enable billing, you appoint Agentic as + your limited payments collection agent for the purpose of accepting + payments from end users via Stripe. +

+ +

6. Open-Source Project

+

+ The Agentic open-source codebase is licensed under the{' '} + + GNU AGPL-3.0 license + + . Your use of the open-source project is governed solely by that + license. Nothing in these Terms will be interpreted to limit your + rights granted under the AGPL-3.0, nor to grant additional rights + beyond it. +

+ +

7. User Content

+

+ "User Content" means any code, text, data, or other + materials you upload to the Service, including APIs, metadata, and + documentation. You retain all ownership rights in your User Content. + You hereby grant Agentic a worldwide, non-exclusive, royalty-free + license to host, cache, reproduce, display, perform, modify (solely + for technical purposes, e.g. formatting), and distribute your + User Content as necessary to operate and improve the Service. You + are solely responsible for your User Content and represent that you + have all rights necessary to grant this license and that your User + Content does not violate any law or third-party rights. +

+ +

8. Acceptable Use Policy

+

+ You agree not to (i) violate applicable laws; (ii) infringe the + intellectual-property or privacy rights of others; (iii) transmit + malicious code; (iv) attempt to gain unauthorized access to the + Service; (v) interfere with the integrity or performance of the + Service; or (vi) send spam or engage in fraudulent or deceptive + practices. We may suspend or terminate accounts that violate this + policy. +

+ +

9. Privacy & Security

+

+ Our collection and use of personal information is described in our + Privacy Policy. We implement + appropriate technical and organizational measures to safeguard your + data; however, no security measure is perfect and we cannot + guarantee absolute security. +

+ +

10. Intellectual Property

+

+ The Service, including all associated software, content, and + trademarks, is owned by Agentic or its licensors and is protected by + intellectual-property laws. Except for the rights expressly granted + to you in these Terms, we reserve all rights, title, and interest in + the Service. +

+ +

11. Suspension & Termination

+

+ We may suspend or terminate your access to the Service at any time + if we believe you have violated these Terms or if necessary to + protect the Service or its users. Upon termination, your right to + use the Service will cease immediately, but Sections 6–16 will + survive. +

+ +

12. Disclaimers

+

+ THE SERVICE IS PROVIDED "AS IS" AND + "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND. + TO THE MAXIMUM EXTENT PERMITTED BY LAW, AGENTIC DISCLAIMS ALL + WARRANTIES, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, + INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND + NON-INFRINGEMENT. WE DO NOT WARRANT THAT THE SERVICE WILL BE + UNINTERRUPTED, ERROR-FREE, OR SECURE. +

+ +

13. Limitation of Liability

+

+ TO THE FULLEST EXTENT PERMITTED BY LAW, IN NO EVENT WILL AGENTIC BE + LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR + EXEMPLARY DAMAGES (INCLUDING LOSS OF PROFITS, GOODWILL, OR DATA) + ARISING OUT OF OR IN CONNECTION WITH THE SERVICE, EVEN IF ADVISED OF + THE POSSIBILITY OF SUCH DAMAGES. AGENTIC'S TOTAL LIABILITY UNDER + THESE TERMS WILL NOT EXCEED THE GREATER OF (A) FEES YOU PAID TO + AGENTIC IN THE 12 MONTHS PRECEDING THE EVENT GIVING RISE TO THE + CLAIM OR (B) USD 100. +

+ +

14. Indemnification

+

+ You will indemnify and hold harmless Agentic and its officers, + directors, employees, and agents from and against any third-party + claims, damages, and expenses (including reasonable attorneys' fees) + arising out of or related to your (i) breach of these Terms, (ii) + User Content, or (iii) violation of any law or third-party rights. +

+ +

15. Governing Law & Venue

+

+ These Terms are governed by the laws of the State of Delaware, + excluding its conflict-of-laws rules. The state and federal courts + located in Wilmington, Delaware will have exclusive jurisdiction to + adjudicate any dispute arising out of or relating to these Terms or + the Service, and you consent to personal jurisdiction and venue in + those courts. +

+ +

16. Changes to These Terms

+

+ We may update these Terms by posting a revised version on our + website and providing notice via email or in-app notification at + least 7 days before the effective date. Continued use of the + Service after the effective date constitutes acceptance of the + revised Terms. +

+ +

17. Contact

+

+ Questions or notices required under these Terms should be sent to + support@agentic.so. You may + also + contact us through our website. +

+
+
+
+ ) +} diff --git a/apps/web/src/components/footer/index.tsx b/apps/web/src/components/footer/index.tsx index 56429a4c..0af77a85 100644 --- a/apps/web/src/components/footer/index.tsx +++ b/apps/web/src/components/footer/index.tsx @@ -153,7 +153,7 @@ export function Footer() {
- + Privacy Policy
diff --git a/apps/web/src/components/markdown/index.tsx b/apps/web/src/components/markdown/index.tsx new file mode 100644 index 00000000..fd1988d2 --- /dev/null +++ b/apps/web/src/components/markdown/index.tsx @@ -0,0 +1,17 @@ +import { cn } from '@/lib/utils' + +import styles from './styles.module.css' + +export function Markdown({ + children, + className +}: { + className?: string + children: React.ReactNode +}) { + return ( +
+ {children} +
+ ) +} diff --git a/apps/web/src/app/about/styles.module.css b/apps/web/src/components/markdown/styles.module.css similarity index 100% rename from apps/web/src/app/about/styles.module.css rename to apps/web/src/components/markdown/styles.module.css diff --git a/todo.md b/todo.md index a085f5dc..ca6ab5f8 100644 --- a/todo.md +++ b/todo.md @@ -20,10 +20,8 @@ - social images - double-check free-tier rate-limits for `@agentic/search` - replace json project and components with actual designs -- implement footer - finesse header (mobile) - create agentic products for legacy tools -- add basic legal terms and privacy policy (and update links in stripe) - add support for [`@google/genai`](https://github.com/googleapis/js-genai) tools adapter - add feature about optimized context to marketing site - ensure all agentic tool inputSchemas support openai strict mode by default