MCP NPX Fetch
A powerful MCP server for fetching and transforming web content into various formats (HTML, JSON, Markdown, Plain Text) with ease.
Overview
MCP NPX Fetch is a powerful MCP server that enables users to fetch and transform web content into various formats, including HTML, JSON, Markdown, and Plain Text.
To use MCP NPX Fetch, you can either install it globally via npm or directly use it with npx. For global installation, run npm install -g @tokenizin/mcp-npx-fetch, or to use it without installation, run npx @tokenizin/mcp-npx-fetch directly in your terminal.
- Universal content fetching supporting multiple formats - Custom headers support for user requests - Built-in transformations for format conversion - High performance optimized for speed - Seamless integration with other MCP clients - Type-safe with full TypeScript support
- Fetching raw HTML from various sources for data scraping.
- Converting fetched JSON data into a more usable format.
- Generating Markdown documentation from web content.
Add to your AI client
Use these steps to connect MCP NPX Fetch in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-npx-fetch-tokenizin-agency": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-npx-fetch-tokenizin-agency"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-npx-fetch-tokenizin-agency": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-npx-fetch-tokenizin-agency"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-npx-fetch-tokenizin-agency": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-npx-fetch-tokenizin-agency"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-npx-fetch-tokenizin-agency": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-npx-fetch-tokenizin-agency"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-npx-fetch-tokenizin-agency": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-npx-fetch-tokenizin-agency"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-npx-fetch-tokenizin-agency": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-npx-fetch-tokenizin-agency"
]
}
}
}FAQ
Is MCP NPX Fetch easy to set up?
Yes! Setup is straightforward via npm or npx.
What kind of transformations can I perform?
It supports HTML, JSON, Markdown, and Plain Text transformations.
Can I integrate it with other applications?
Yes, MCP NPX Fetch is designed to integrate seamlessly with other MCP clients.