← WebMCP Directory

Tool tree

tehisarukas.ee

AI & Agents
https://tehisarukas.ee/
An Estonian publication with AI news, articles, and practical video tutorials.
Explore capabilities

Tools verified

get_articleAnswer

Fetch and parse full article content by URL (params: url — defaults to current/latest article) -> {title, url, author, date, categories, tags, content, headings}

View tool JSON
{
  "name": "get_article",
  "kind": "answer",
  "impl": "imperative",
  "description": "Fetch and parse full article content by URL (params: url — defaults to current/latest article) -> {title, url, author, date, categories, tags, content, headings}",
  "inputSchema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string",
        "description": "Full URL of the article to read (defaults to current or latest article)"
      }
    }
  }
}
list_articlesAnswer

List recent AI news, articles, and tutorials from the blog (params: limit=10) -> list [{title, url, excerpt, author, date}]

View tool JSON
{
  "name": "list_articles",
  "kind": "answer",
  "impl": "imperative",
  "description": "List recent AI news, articles, and tutorials from the blog (params: limit=10) -> list [{title, url, excerpt, author, date}]",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 10,
        "description": "Maximum number of articles to return"
      }
    }
  }
}
list_videosAnswer

List practical AI video tutorials and guides (params: limit=10) -> list [{title, video_url}]

View tool JSON
{
  "name": "list_videos",
  "kind": "answer",
  "impl": "imperative",
  "description": "List practical AI video tutorials and guides (params: limit=10) -> list [{title, video_url}]",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 10,
        "description": "Maximum number of video items to return"
      }
    }
  }
}
search_articlesAction

Search AI articles, news, and guides (params: query, navigate=false) -> navigates or returns list [{title, url, excerpt, date}]

View tool JSON
{
  "name": "search_articles",
  "kind": "act",
  "impl": "imperative",
  "description": "Search AI articles, news, and guides (params: query, navigate=false) -> navigates or returns list [{title, url, excerpt, date}]",
  "inputSchema": {
    "type": "object",
    "required": [
      "query"
    ],
    "properties": {
      "query": {
        "type": "string",
        "description": "Search keyword or phrase (e.g. 'chatgpt', 'agent')"
      },
      "navigate": {
        "type": "boolean",
        "default": false,
        "description": "Whether to navigate the browser to the search results page"
      }
    }
  }
}