We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/smaniches/semantic-scholar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[project]
name = "semantic-scholar-mcp"
version = "1.0.0"
description = "MCP server for Semantic Scholar — 200M+ academic papers in Claude Desktop"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Santiago Maniches", email = "santiago@topologica.ai"}
]
maintainers = [
{name = "TOPOLOGICA LLC", email = "support@topologica.ai"}
]
keywords = ["mcp", "model-context-protocol", "semantic-scholar", "academic-research", "claude", "python", "llm", "research-tools"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mcp>=1.25.0,<2",
"httpx>=0.25.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"respx>=0.20.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://topologica.ai"
Repository = "https://github.com/smaniches/semantic-scholar-mcp"
Issues = "https://github.com/smaniches/semantic-scholar-mcp/issues"
Changelog = "https://github.com/smaniches/semantic-scholar-mcp/blob/main/CHANGELOG.md"
"Semantic Scholar API" = "https://www.semanticscholar.org/product/api"
[project.scripts]
semantic-scholar-mcp = "semantic_scholar_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/semantic_scholar_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
strict = true
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]