Neptime

39 tools. 22 can modify or destroy data without limits.

7 destructive tools with no built-in limits. Policy required.

Last updated:

22 can modify or destroy data
17 read-only
39 tools total

Community server · catalogue entry verified 05/07/2026

How to control Neptime ↓

What Neptime exposes to your agents

Read (17) Write / Execute (15) Destructive / Financial (7)
Critical Risk

The most dangerous Neptime tools

22 of Neptime's 39 tools can modify, destroy, or commit something on every call — and an agent calls them with no built-in limits.

How to control Neptime

PolicyLayer is an MCP gateway — it sits between your AI agents and Neptime, and nothing reaches the server without passing your rules. These are the rules we recommend:

Deny destructive operations
{
  "neptime_clear_history": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Blocked by default. Requires approval."
      }
    ]
  }
}

Destructive tools should never be available to autonomous agents without human approval.

Rate limit write operations
{
  "neptime_add_video_to_playlist": {
    "limits": [
      {
        "counter": "neptime_add_video_to_playlist_per_hour",
        "window": "hour",
        "max": 30,
        "scope": "grant"
      }
    ]
  }
}

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
{
  "neptime_get_article": {
    "limits": [
      {
        "counter": "neptime_get_article_per_minute",
        "window": "minute",
        "max": 60,
        "scope": "grant"
      }
    ]
  }
}

Controls API costs and prevents retry loops from exhausting upstream rate limits.

  1. Create a free account and register Neptime — nothing to install.
  2. Add these rules — paste them, or build them visually. Tune the limits to your setup.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
ENFORCE POLICY ON NEPTIME →

Instant setup, no code required.

All 39 Neptime tools

WRITE 15 tools
Write neptime_add_video_to_playlist Add a video to a playlist. Limit: 500 videos per playlist. Args: - list_id: Playlist ID (required) - vide Write neptime_add_watch_later Add a video to your watch later list. Args: - video_id: Video ID to add (required) Returns: Confirmation. Write neptime_create_article Create a new article/post. Args: - title: Article title, 5-200 chars (required) - description: Short desc Write neptime_create_article_comment Post a comment on an article. Limit: 50 comments/day, 10s between posts. Args: - article_id: Article ID (re Write neptime_create_playlist Create a new playlist. Limit: 100 playlists max per user. Args: - name: Playlist name, 2-100 chars (require Write neptime_create_video_comment Post a comment on a video. Limit: 50 comments/day, 10s between posts. Args: - video_id: Video ID (required) Write neptime_rate_comment Like or dislike a comment. Args: - comment_id: Comment ID (required) - rating: Write neptime_rate_video Like or dislike a video. Args: - video_id: Video ID (required) - rating: Write neptime_report_video Report a video for violating community guidelines. Limit: 10 reports/hour, 50/day. Args: - video_id: Video Write neptime_subscribe Subscribe to a channel. Limit: 50 subscriptions per day. Args: - channel_id: Channel ID to subscribe to (re Write neptime_unsubscribe Unsubscribe from a channel. Args: - channel_id: Channel ID to unsubscribe from (required) Returns: Unsubsc Write neptime_update_article Update an article you own. Args: - article_id: Article ID (required) - title: New title (optional) - de Write neptime_update_playlist Update a playlist you own. Args: - list_id: Playlist ID (required) - name: New name, 2-100 chars (optiona Write neptime_update_video Update a video you own on Neptime.io. Args: - video_id: Video ID to update (required) - title: New title Write neptime_upload_video Upload a video to Neptime.io through the live /videos/upload endpoint. Provide either video_path for a local
READ 17 tools
Read neptime_get_article Get a specific article by ID. Args: - article_id: Article ID (required) Returns: Full article object with Read neptime_get_article_comments Get comments on an article. Args: - article_id: Article ID (required) - limit: Max results 1-100 (default Read neptime_get_categories Get all video categories. Returns: Array of category objects with id, name, video count. Read neptime_get_category_videos Get videos in a specific category. Args: - category_id: Category ID (required) - limit: Max results 1-100 Read neptime_get_channel Get channel information by ID. Args: - channel_id: Channel ID (required) Returns: Channel object with name Read neptime_get_channel_videos Get videos from a specific channel. Args: - channel_id: Channel ID (required) - limit: Max results 1-100 Read neptime_get_history Get your video watch history. Args: - limit: Max results 1-100 (default: 20) - offset: Pagination offset Read neptime_get_playlist Get details of a specific playlist including videos. Args: - list_id: Playlist ID (required) Returns: Play Read neptime_get_playlists Get all playlists owned by the authenticated user. Limit: 100 playlists max. Returns: Array of playlist objec Read neptime_get_subscriptions Get list of channels you are subscribed to. Args: - limit: Max results 1-100 (default: 20) - offset: Pagi Read neptime_get_video Get detailed information about a specific video. Args: - video_id: Video ID (required) Returns: Full video Read neptime_get_video_comments Get comments on a video. Args: - video_id: Video ID (required) - limit: Max results 1-100 (default: 20) Read neptime_get_watch_later Get your watch later list. Returns: Array of videos saved for later. Read neptime_list_articles List articles/posts from Neptime.io. Args: - limit: Max results 1-100 (default: 20) - offset: Pagination Read neptime_list_videos List videos from Neptime.io with pagination and sorting. Args: - limit: Max results 1-100 (default: 20) - Read neptime_search_videos Search for videos on Neptime.io by keyword. Args: - q: Search query (required, 1-200 chars) - limit: Max Read neptime_trending_videos Get trending videos on Neptime.io. Args: - limit: Max results 1-100 (default: 20) - period: Trending peri

Related servers

Other MCP servers with similar tools — same risk classification, starter policies for each.

Questions about Neptime

Can an AI agent delete data through the Neptime MCP server? +

Yes. The Neptime server exposes 7 destructive tools including neptime_clear_history, neptime_delete_article, neptime_delete_comment. These permanently remove resources with no undo. PolicyLayer blocks destructive tools by default so they never reach the upstream server.

How do I prevent bulk modifications through Neptime? +

The Neptime server has 15 write tools including neptime_add_video_to_playlist, neptime_add_watch_later, neptime_create_article. Set a rate limit in your policy -- for example, 10 calls per hour prevents an agent from making more than 10 modifications per hour. PolicyLayer enforces this at the gateway, before calls reach Neptime.

How many tools does the Neptime MCP server expose? +

39 tools across 3 categories: Destructive, Read, Write. 17 are read-only. 22 can modify, create, or delete data.

How do I enforce a policy on Neptime? +

Register the Neptime MCP server in PolicyLayer, apply the suggested rules above (adjust the limits to your use case), and point your AI client at the PolicyLayer proxy URL instead of the server directly. Your agents keep the same tools; PolicyLayer evaluates every call against policy before it executes. Nothing to install, live in minutes.

Enforce policy on every Neptime tool call.

Deterministic rules across all 39 Neptime tools. Per-identity grants. Full audit log. Live in minutes. Nothing to install.

Instant setup, no code required.

39 Neptime tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.