NetworkX MCP Server
Resolves DOIs to publication metadata using the CrossRef API, enabling citation network building, author impact analysis, and literature discovery.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NetworkX MCP ServerFind the shortest path between nodes A and B in my graph."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
NetworkX MCP Server
Academic-focused graph analysis in your AI conversations - The first and only NetworkX MCP server specialized for academic research and citation analysis.
๐ What is this?
NetworkX MCP Server enables Large Language Models (like Claude) to perform sophisticated academic research and citation analysis directly within conversations. Built specifically for researchers, academics, and students who need to analyze citation networks, calculate author impact metrics, and discover literature patterns.
Stop switching between VOSviewer, CitNetExplorer, and manual analysis. Start doing academic research in your AI conversations.
๐ฏ Key Features
๐ฌ Academic Research Tools
Citation Network Analysis: Build citation networks from DOIs using CrossRef API
Author Impact Metrics: Calculate h-index, total citations, and academic influence
Literature Discovery: Automated paper recommendations based on citation patterns
Collaboration Analysis: Map co-authorship networks and identify key researchers
Research Trend Detection: Analyze publication and citation trends over time
๐ Core Graph Operations
43 Graph Tools: From basic operations to advanced algorithms like PageRank
BibTeX Export: Export citation networks in academic-standard BibTeX format
CrossRef Integration: Access 156+ million academic papers via DOI resolution
Visualization: Generate publication-ready network visualizations
First of Its Kind: The only academic-focused NetworkX MCP server
๐ Why NetworkX MCP Server for Academic Research?
Built for Researchers: Designed specifically for academic workflows and citation analysis
Real-time Literature Discovery: Find related papers and collaboration opportunities instantly
Reproducible Research: Python-based, version-controlled, and shareable analysis workflows
Academic Data Integration: Direct access to CrossRef's 156+ million paper database
No Enterprise Complexity: Focus on research, not IT infrastructure
Cost-Effective: Free alternative to expensive commercial citation analysis tools
๐ฆ Installation
pip install networkx-mcp-server๐ Quick Start
1. Install the server
pip install networkx-mcp-server2. Configure Claude Desktop
Add to your claude_desktop_config.json:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"networkx": {
"command": "python",
"args": ["-m", "networkx_mcp"]
}
}
}3. Restart Claude Desktop
The NetworkX tools will now be available in your conversations!
๐งช Test It Works
Ask Claude: "Create a graph called 'test', add nodes 1, 2, 3 with edges between them, then find the shortest path from 1 to 3"
๐ Available Operations
๐ฌ Academic Research Functions
resolve_doi- Resolve DOI to publication metadata using CrossRef APIbuild_citation_network- Build citation networks from seed DOIsanalyze_author_impact- Calculate h-index and impact metrics for authorsfind_collaboration_patterns- Analyze co-authorship networksdetect_research_trends- Identify publication and citation trends over timerecommend_papers- Get paper recommendations based on citation patternsexport_bibtex- Export citation networks in BibTeX format
๐ Core Graph Operations
create_graph- Create directed or undirected graphsadd_nodes/remove_nodes- Add or remove nodesadd_edges/remove_edges- Add or remove edgesget_info- Get basic graph statisticslist_graphs- List all stored graphsdelete_graph- Delete a graph from storageshortest_path- Find optimal paths between nodesget_neighbors- Get all neighbors of a nodeset_node_attributes/get_node_attributes- Manage node metadataset_edge_attributes/get_edge_attributes- Manage edge weights and metadata
๐ Analysis Operations
degree_centrality- Find the most connected nodesbetweenness_centrality- Identify bridges and key connectorscentrality_measures- Multiple centrality metrics at oncepagerank- Google's PageRank algorithm for node importanceconnected_components- Find isolated subgraphscommunity_detection- Discover natural groupingsclustering_coefficients- Measure local clusteringgraph_statistics- Comprehensive graph statisticsminimum_spanning_tree- Find minimum spanning treecycles_detection- Detect cycles in a graphgraph_coloring- Greedy vertex coloringmatching- Maximum weight matchingmaximum_flow- Maximum flow in directed graphstopological_sort- Topological ordering of DAGssubgraph- Extract induced subgraph as new graphmerge_graphs- Compose two graphs into one
๐จ Visualization & I/O
visualize_graph- Create PNG visualizations with multiple layoutsimport_csv- Load graphs from edge listsexport_json- Export graphs in standard formats
Academic Research Example
Human: Analyze citation patterns for the paper "Attention Is All You Need"
Claude: I'll help you analyze citation patterns for that influential paper.
[Resolves DOI: 10.5555/3295222.3295349]
Found paper: "Attention Is All You Need" by Vaswani et al. (2017)
Citations: 82,892 | Journal: NIPS
[Builds citation network from seed DOI]
Built citation network with 847 nodes and 2,341 edges from 2-hop analysis
[Analyzes author impact]
Ashish Vaswani: h-index 45, total citations 127,436
Most impactful paper: "Attention Is All You Need" (82,892 citations)
[Finds collaboration patterns]
Key collaborators: Noam Shazeer (Google), Niki Parmar (Google)
Research cluster: Google Brain team with 47 collaborations
[Detects research trends]
Trend: MASSIVE INCREASE in attention mechanism research post-2017
2017: 12 papers โ 2023: 3,847 papers (320x growth)
[Recommends related papers]
Top recommendations based on co-citation patterns:
1. "BERT: Pre-training of Deep Bidirectional Transformers" (2018)
2. "GPT-2: Language Models are Unsupervised Multitask Learners" (2019)
3. "RoBERTa: A Robustly Optimized BERT Pretraining Approach" (2019)
[Exports BibTeX]
Generated BibTeX file with 847 entries ready for LaTeX integration๐ Academic Use Cases
1. Literature Review & Meta-Analysis
Automatically expand citation networks from key papers
Identify research gaps and emerging trends
Calculate field-wide impact metrics
Generate comprehensive BibTeX databases
2. Collaboration Network Analysis
Map research collaborations within and across institutions
Identify key researchers and potential collaborators
Analyze interdisciplinary connections
Study research community evolution
3. Citation Pattern Analysis
Track knowledge diffusion through citation networks
Identify influential papers and breakthrough research
Analyze citation bias and self-citation patterns
Study geographic and institutional citation patterns
4. Research Trend Detection
Identify emerging research areas and hot topics
Analyze publication volume and citation trends
Track research lifecycle from emergence to maturity
Predict future research directions
5. Academic Impact Assessment
Calculate comprehensive author impact metrics
Compare researchers across different career stages
Analyze journal and conference impact patterns
Study citation half-life and research longevity
๐ Performance
Memory: ~70MB (including Python, NetworkX, and visualization)
Graph Size: Tested up to 10,000 nodes
Operations: Most complete in milliseconds
Visualization: 1-2 seconds for complex graphs
๐ ๏ธ Development
Running from Source
# Clone the repository
git clone https://github.com/Bright-L01/networkx-mcp-server
cd networkx-mcp-server
# Install dependencies
pip install -e ".[dev]"
# Run the server
python -m networkx_mcpRunning Tests
pytest tests/working/๐ Documentation
API Reference - Detailed operation descriptions
Contributing - How to contribute
๐ค Contributing
We welcome contributions! This is the first NetworkX MCP server, and there's lots of room for improvement:
Add more graph algorithms
Improve visualization options
Add graph file format support
Optimize performance
Write more examples
๐ License
MIT License - See LICENSE for details.
๐ Acknowledgments
NetworkX - The amazing graph library that powers this server
Anthropic - For creating the Model Context Protocol
The MCP community - For inspiration and examples
Built with โค๏ธ for the AI and Graph Analysis communities
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brightlikethelight/networkx-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server