MCP Server
Connect BizPub.ai to AI assistants using the Model Context Protocol (MCP).
What is MCP?
The Model Context Protocol (MCP) is an open standard that lets AI assistants like Claude connect to external data sources and tools. BizPub.ai provides an MCP server so you can search and explore business research papers directly from your AI assistant.
Setup
Connect directly to the hosted MCP server — no installation required.
Server URL:
https://bizpub.ai/mcpClaude Desktop / Claude.ai:
- Go to Settings > Connectors
- Click the + button
- Enter the server URL above
- Click Add
Claude Code:
claude mcp add bizpub --transport http https://bizpub.ai/mcpCursor:
In Cursor settings, add a new MCP server:
- Type:
HTTP - URL:
https://bizpub.ai/mcp
Any MCP client (generic config):
{
"mcpServers": {
"bizpub": {
"url": "https://bizpub.ai/mcp"
}
}
}Example Prompts
Once connected, you can ask your AI assistant questions like:
- "Search for recent papers on AI in management science"
- "Find papers by Author Name"
- "What are the top universities publishing in UTD24 journals?"
- "Show me details about this paper: [DOI]"
- "Which business schools published the most in the Journal of Finance last year?"
- "What are the trending keywords in IS research?"
Authentication
The MCP server requires authentication via OAuth 2.0. When you connect through Claude Desktop or other MCP clients, you'll be redirected to sign in with your BizPub.ai account (Google, GitHub, or magic link). This gives you access to personalized features like bookmarks.
Available Tools
The BizPub.ai MCP server exposes the following tools:
search_articles
Search articles by keyword, author name, journal, or year range. Returns paginated results with titles, authors, DOIs, and citation counts.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | No | Search term (title, abstract, keywords, author, DOI) |
journal | string | No | Journal abbreviation filter (e.g. ISR, MISQ, JFE) |
yearFrom | number | No | Start year (inclusive) |
yearTo | number | No | End year (inclusive) |
page | number | No | Page number (default: 1) |
hasSlideDeck | boolean | No | Only articles with slide decks |
hasPodcast | boolean | No | Only articles with podcasts |
view_article
View full details of an article including abstract, authors with affiliations, keywords, citations, and attachments.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Article slug (from search results) |
list_journals
List all journals tracked by BizPub with article counts, publisher, field, and ranking info (UTD24, FT50, ABS, ABDC).
view_journal
View detailed information about a specific journal.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
abbreviation | string | Yes | Journal abbreviation (e.g. ISR, MISQ, JFE) |
search
Quick search across authors, articles, and organizations. Returns top matches.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search query (min 2 characters) |
category | string | No | Limit to: authors, organizations, or omit for all |
university_rankings
View university/organization rankings by publication count.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
journals | string | No | Comma-separated journal codes (e.g. ISR,MISQ,MS) |
list | string | No | Predefined list: utd24 or ft50 |
yearFrom | number | No | Start year |
yearTo | number | No | End year |
search | string | No | Filter by organization name |
page | number | No | Page number (default: 1) |
pageSize | number | No | Results per page (default: 50, max: 100) |
author_rankings
View author rankings by publication count. Same filters as university rankings.
author_papers
View all papers by a specific author.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
authorId | string | Yes | Author ID (from ranking results) |
university_papers
View all papers affiliated with a university/organization.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Organization slug (from ranking results) |
articles_by_keyword
Find articles tagged with a specific keyword.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
keyword | string | Yes | Keyword to search for |
page | number | No | Page number (default: 1) |
publication_trends
View publication count trends over time, optionally filtered by journals.
keyword_trends
View trending keywords and keyword cloud data across all articles.
get_stats
Get BizPub database statistics: total articles, authors, journals, and year range.
my_bookmarks
View your bookmarked articles (requires authentication).
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
page | number | No | Page number (default: 1) |
save_bookmark
Bookmark an article for later reading (requires authentication).
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Article slug to bookmark |
remove_bookmark
Remove a bookmarked article (requires authentication).
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
slug | string | Yes | Article slug to remove |