@thenextgennexus/social-content-mcp-server 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/server.json +30 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thenextgennexus/social-content-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Access Hacker News, Dev.to, IMDB, podcasts, and Eventbrite data through the Model Context Protocol",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,5 +36,5 @@
36
36
  "type": "git",
37
37
  "url": "https://github.com/TheNextGenNexus/social-media-mcp-servers"
38
38
  },
39
- "mcpName": "io.github.thenextgennexus/social-content-mcp-server"
40
- }
39
+ "mcpName": "io.github.TheNextGenNexus/social-content-mcp-server"
40
+ }
package/server.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.TheNextGenNexus/social-content-mcp-server",
4
+ "description": "Access Hacker News, Dev.to, IMDB, podcasts, and Eventbrite data through the Model Context Protocol",
5
+ "repository": {
6
+ "url": "https://github.com/TheNextGenNexus/social-media-mcp-servers",
7
+ "source": "github",
8
+ "subfolder": "servers/social-content-mcp-server"
9
+ },
10
+ "version": "1.0.0",
11
+ "packages": [
12
+ {
13
+ "registryType": "npm",
14
+ "identifier": "@thenextgennexus/social-content-mcp-server",
15
+ "version": "1.0.0",
16
+ "transport": {
17
+ "type": "stdio"
18
+ },
19
+ "environmentVariables": [
20
+ {
21
+ "description": "Your Apify API token for accessing web scraping actors",
22
+ "isRequired": true,
23
+ "format": "string",
24
+ "isSecret": true,
25
+ "name": "APIFY_TOKEN"
26
+ }
27
+ ]
28
+ }
29
+ ]
30
+ }