Agentic Ai Tool Suite MCP Server

This repository contains a collection of Model Context Protocol (MCP) servers, packaged together for convenience. Each server provides distinct

Local serverstdioPython

What is the Agentic Ai Tool Suite MCP server?

This repository contains a collection of Model Context Protocol (MCP) servers, packaged together for convenience. Each server provides distinct functionalities related to media handling, information retrieval, and document creation. That is what the agentic ai tool suite mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

Getting it running

Installation goes through your MCP client rather than a global install: point it at information-retrieval-mcp-server on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: GOOGLE_API_KEY, GOOGLE_CSE_ID, UNSPLASH_ACCESS_KEY, GEMINI_API_KEY, YOUR_UNSPLASH_API_KEY, YOUR_GOOGLE_API_KEY, YOUR_CUSTOM_SEARCH_ENGINE_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. It is maintained by Godzilla675; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

How to install the Agentic Ai Tool Suite MCP server

{
  "mcpServers": {
    "information-retrieval": {
      "command": "npx",
      "args": ["-y", "information-retrieval-mcp-server"],
      "env": {
        "GOOGLE_API_KEY": "your-google-api-key",
        "GOOGLE_CSE_ID": "your-custom-search-engine-id"
      }
    },
    "media-tools": {
      "command": "npx",
      "args": ["-y", "media-tools-mcp-server"],
      "env": {
        "UNSPLASH_ACCESS_KEY": "your-unsplash-key",
        "GEMINI_API_KEY": "your-gemini-key"
      }
    },
    "presentation-creator": {
      "command": "npx",
      "args": ["-y", "presentation-creator-mcp-server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GOOGLE_API_KEYCredential the server authenticates with.Yes
GOOGLE_CSE_IDConfiguration value read at startup.Optional
UNSPLASH_ACCESS_KEYCredential the server authenticates with.Yes
GEMINI_API_KEYCredential the server authenticates with.Yes
YOUR_UNSPLASH_API_KEYCredential the server authenticates with.Yes
YOUR_GOOGLE_API_KEYCredential the server authenticates with.Yes
YOUR_CUSTOM_SEARCH_ENGINE_IDConfiguration value read at startup.Optional

Frequently asked questions

It connects Agentic Ai Tool Suite to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Agentic Ai Tool Suite directly.