eol-mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # EOL MCP
2
+
3
+ Species data from the public Encyclopedia of Life API. No key required.
4
+
5
+ This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
6
+
7
+ ## Tools
8
+
9
+
10
+ * `search` Search species.
11
+ * `page` Species page.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ npm install
17
+ npm run build
18
+ node dist/index.js
19
+ ```
20
+
21
+ Data comes from the public Encyclopedia of Life API.
package/dist/api.js ADDED
@@ -0,0 +1,39 @@
1
+ const UA = 'mrfentmen-eol-mcp/1.0';
2
+ export async function search(args) {
3
+ const query = (args.query ?? '').trim();
4
+ if (!query)
5
+ return 'Provide search terms.';
6
+ const limit = Math.min(Math.max(Number(args.limit ?? 5) || 5, 1), 20);
7
+ const res = await fetch(`https://eol.org/api/search/1.0.json?q=${encodeURIComponent(query)}&page=1`, {
8
+ headers: { 'User-Agent': UA, Accept: 'application/json' },
9
+ signal: AbortSignal.timeout(20000),
10
+ });
11
+ if (!res.ok)
12
+ throw new Error(`EOL returned ${res.status}`);
13
+ const d = (await res.json());
14
+ const results = d.results ?? [];
15
+ if (!results.length)
16
+ return `No species for "${query}".`;
17
+ return `EOL species for "${query}" (${d.totalResults ?? results.length} total, showing ${Math.min(limit, results.length)}):\n` +
18
+ results.slice(0, limit).map((x, i) => `${i + 1}. ${x.title ?? '?'} (id=${x.id ?? '?'})`).join('\n');
19
+ }
20
+ export async function page(args) {
21
+ const id = Number(args.id);
22
+ if (!Number.isFinite(id) || id <= 0)
23
+ return 'Provide a taxon id.';
24
+ const res = await fetch(`https://eol.org/api/pages/${id}.json?images_per_page=0&videos_per_page=0&sounds_per_page=0&maps_per_page=0&details=false`, {
25
+ headers: { 'User-Agent': UA, Accept: 'application/json' },
26
+ signal: AbortSignal.timeout(20000),
27
+ });
28
+ if (!res.ok)
29
+ throw new Error(`EOL returned ${res.status}`);
30
+ const d = (await res.json());
31
+ const t = d.taxonConcept;
32
+ if (!t)
33
+ return `No EOL page for id ${id}.`;
34
+ return [
35
+ `EOL taxon ${t.identifier ?? id}:`,
36
+ `Scientific name: ${t.scientificName ?? '?'}`,
37
+ `Name source: ${t.nameAccordingTo ?? '?'} | Richness score: ${t.richness_score ?? '?'}`,
38
+ ].filter(Boolean).join('\n');
39
+ }
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
2
+ import { createServer } from "./server.js";
3
+ const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
4
+ main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
package/dist/server.js ADDED
@@ -0,0 +1,38 @@
1
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
+ import { z } from "zod";
3
+ import { page } from "./api.js";
4
+ import { search } from "./api.js";
5
+ const text = (value) => ({ content: [{ type: "text", text: value }] });
6
+ const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
7
+ const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
8
+ const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
9
+ export function createServer() {
10
+ const server = new McpServer({ name: "eol-mcp", version: "1.0.0" });
11
+ server.registerTool("search", {
12
+ title: "Search",
13
+ description: "Search species.",
14
+ inputSchema: z.object({ query: z.string().describe("Search terms."), limit: z.number().describe("Max results.").optional() }),
15
+ annotations: READ_ONLY,
16
+ }, async (args) => {
17
+ try {
18
+ return text(await search(args));
19
+ }
20
+ catch (e) {
21
+ return textError(error(e));
22
+ }
23
+ });
24
+ server.registerTool("page", {
25
+ title: "Page",
26
+ description: "Get a species page.",
27
+ inputSchema: z.object({ id: z.number().describe("Taxon id.") }),
28
+ annotations: READ_ONLY,
29
+ }, async (args) => {
30
+ try {
31
+ return text(await page(args));
32
+ }
33
+ catch (e) {
34
+ return textError(error(e));
35
+ }
36
+ });
37
+ return server;
38
+ }
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "type": "module",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/mrfentmen/eol-mcp.git"
7
+ },
8
+ "bin": {
9
+ "eol-mcp": "./dist/index.js"
10
+ },
11
+ "main": "./dist/index.js",
12
+ "files": [
13
+ "dist",
14
+ "server.json",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc -p tsconfig.json",
19
+ "start": "node dist/index.js",
20
+ "dev": "npm run build && node dist/index.js"
21
+ },
22
+ "license": "MIT",
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.4",
25
+ "zod": "^3.23.8"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^22.0.0",
29
+ "typescript": "^5.6.0"
30
+ },
31
+ "name": "eol-mcp",
32
+ "description": "Encyclopedia of Life species data. No key required.",
33
+ "keywords": [
34
+ "mcp",
35
+ "eol",
36
+ "species",
37
+ "biology",
38
+ "nature"
39
+ ],
40
+ "engines": {
41
+ "node": ">=20"
42
+ },
43
+ "mcpName": "io.github.mrfentmen/eol-mcp"
44
+ }
package/server.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.mrfentmen/eol-mcp",
4
+ "description": "Encyclopedia of Life species data. No key required.",
5
+ "repository": {
6
+ "url": "https://github.com/mrfentmen/eol-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "eol-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }