We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LinXueyuanStdio/academic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_acm.py•590 B
# tests/test_acm.py
import unittest
from academic_mcp.sources.acm import ACMSearcher
class TestACMSearcher(unittest.TestCase):
def test_search(self):
"""Test ACM search (expects empty results due to no API)"""
searcher = ACMSearcher()
papers = searcher.search("machine learning", max_results=5)
print("ACM Digital Library does not provide a free public API")
print("Manual search required at https://dl.acm.org/")
# Expected to return empty list
self.assertEqual(len(papers), 0)
if __name__ == '__main__':
unittest.main()