- Home
- MCP servers
- Tagny
Tagny
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"tagny-tagny-mcp-server": {
"command": "tagny-mcp-server",
"args": []
}
}
}You can run Tagny MCP Server locally to enrich your locally served LLMs with web access, text extraction from URLs, and quick web searches. It exposes its capabilities over the MCP protocol using Server-Sent Events, so your MCP client can request URL text, page links, and search results on demand.
How to use
To use Tagny MCP Server with your MCP client, start the server locally and connect to its MCP endpoint. The server provides tools to fetch text from a URL, extract all page links, and perform web searches using Brave or DuckDuckGo. It communicates over Server-Sent Events, so your client can stream results as they become available.
How to install
Prerequisites you need installed before you start:
- Python 3.8+
- pip (Python package manager)
- A working network connection
Option 1 — Install from PyPI
pip install tagny-mcp-server
Option 2 — Install from source
uv pip install -e .
# with dev dependencies
uv sync
Starting the server after installation
# start from source code
uv run -m tagny_mcp_server
# after proper installation, use the default entry point
tagny-mcp-server
Additional notes on startup and usage
You can customize the running port if needed. For example, to run on a different port, use --port with the start command.
uv run -m tagny_mcp_server --port 5002
Available tools
fetch_url_text
Downloads and parses HTML content from a URL, returning only the visible text.
fetch_page_links
Returns a list of all hyperlinks found on a webpage.
search_web_with_brave
Performs web searches using the Brave search engine.
search_web_with_duckduckgo
Performs web searches using the DuckDuckGo search engine.