JSer.info MCP Server is a tool that allows you to access and search JSer.info content through the Model Context Protocol. It provides functions to search articles, retrieve product information, and access weekly JSer content through various tools.
You can use JSer.info MCP in VSCode through two methods:
You can add the remote server in one of the following ways:
code --add-mcp '{"name":"jser-info-mcp","url":"https://mcp.jser.info/mcp"}'
Add the following configuration to your VSCode settings.json:
"mcp": {
"servers": {
"jser-info-mcp": {
"url": "https://mcp.jser.info/mcp"
}
}
}
This will automatically make JSer.info MCP available in VSCode.
Start @jser/mcp in your terminal:
npx @jser/mcp
Open the VSCode command palette (using Cmd+Shift+P
or Ctrl+Shift+P
), then run "MCP: Add Server..."
Enter http://localhost:14561/mcp
as the server URL to connect
After connecting, you'll have access to the following tools:
Searches for items by title, description, URL, or tags. Multiple keywords separated by spaces are treated as OR search.
Parameters:
query
: Search query (1-100 characters)limit
: Maximum number of results to return (1-100, default: 10)offset
: Result offset (0 or greater, default: 0)order
: Sort order
desc
: Newest first (default)asc
: Oldest firstReturns an array of items containing title, URL, content, tags, date, and related links.
Searches for posts by title, description, URL, or tags.
Parameters:
query
: Search query (1-100 characters)limit
: Maximum number of results (1-100, default: 10)offset
: Result offset (0 or greater, default: 0)sort
: Sort method
relevance
: By relevance (default)date
: By dateorder
: Sort order
desc
: Newest/most relevant first (default)asc
: Oldest/least relevant firstReturns an array of posts with title, URL, content, tags, and date.
Retrieves product name from a URL.
Parameters:
url
: Product URL (required)Returns a product info object containing name, URL, release note probability, version, and related release note URL if applicable.
Gets JSer week information by number.
Parameters:
number
: JSer week number (required)Returns a JSer week object with number, start date, end date, items, and posts.
Gets all JSer weeks.
Returns an array of JSer week objects.
Gets JSer weeks between two dates.
Parameters:
beginDate
: Start date (required)endDate
: End date (required)Returns an array of JSer week objects within the specified period.
Gets the JSer week containing an item with the specified URL.
Parameters:
item_url
: Item URL (required)Returns a JSer week object.
Gets an item with the specified URL.
Parameters:
url
: Item URL (required)Returns an item object with title, URL, description, tags, date, and related links.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "jser-info-mcp" '{"url":"https://mcp.jser.info/mcp"}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"jser-info-mcp": {
"url": "https://mcp.jser.info/mcp"
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"jser-info-mcp": {
"url": "https://mcp.jser.info/mcp"
}
}
}
3. Restart Claude Desktop for the changes to take effect