Skip to content

Commit c4a47ec

Browse files
Merge pull request #2 from PaystackOSS/feat-get-operation
feat: implement resource and tools for getting operation details
2 parents 22a51b0 + 24275dc commit c4a47ec

7 files changed

Lines changed: 620 additions & 325 deletions

File tree

.gitignore

Lines changed: 2 additions & 101 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
logs
44
*.log
55
npm-debug.log*
6-
yarn-debug.log*
7-
yarn-error.log*
8-
lerna-debug.log*
96

107
# Diagnostic reports (https://nodejs.org/api/report.html)
118
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -16,50 +13,19 @@ pids
1613
*.seed
1714
*.pid.lock
1815

19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
22-
# Coverage directory used by tools like istanbul
23-
coverage
24-
*.lcov
25-
26-
# nyc test coverage
27-
.nyc_output
28-
29-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30-
.grunt
31-
32-
# Bower dependency directory (https://bower.io/)
33-
bower_components
34-
35-
# node-waf configuration
36-
.lock-wscript
3716

3817
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
18+
build/
4019

4120
# Dependency directories
4221
node_modules/
43-
jspm_packages/
44-
45-
# Snowpack dependency directory (https://snowpack.dev/)
46-
web_modules/
4722

4823
# TypeScript cache
4924
*.tsbuildinfo
5025

5126
# Optional npm cache directory
5227
.npm
5328

54-
# Optional eslint cache
55-
.eslintcache
56-
57-
# Optional stylelint cache
58-
.stylelintcache
59-
60-
# Optional REPL history
61-
.node_repl_history
62-
6329
# Output of 'npm pack'
6430
*.tgz
6531

@@ -71,70 +37,5 @@ web_modules/
7137
.env.*
7238
!.env.example
7339

74-
# parcel-bundler cache (https://parceljs.org/)
75-
.cache
76-
.parcel-cache
77-
78-
# Next.js build output
79-
.next
80-
out
81-
82-
# Nuxt.js build / generate output
83-
.nuxt
84-
dist
85-
86-
# Gatsby files
87-
.cache/
88-
# Comment in the public line in if your project uses Gatsby and not Next.js
89-
# https://nextjs.org/blog/next-9-1#public-directory-support
90-
# public
91-
92-
# vuepress build output
93-
.vuepress/dist
94-
95-
# vuepress v2.x temp and cache directory
96-
.temp
97-
.cache
98-
99-
# Sveltekit cache directory
100-
.svelte-kit/
101-
102-
# vitepress build output
103-
**/.vitepress/dist
104-
105-
# vitepress cache directory
106-
**/.vitepress/cache
107-
108-
# Docusaurus cache and generated files
109-
.docusaurus
110-
111-
# Serverless directories
112-
.serverless/
113-
114-
# FuseBox cache
115-
.fusebox/
116-
117-
# DynamoDB Local files
118-
.dynamodb/
119-
120-
# Firebase cache directory
121-
.firebase/
122-
123-
# TernJS port file
124-
.tern-port
125-
12640
# Stores VSCode versions used for testing VSCode extensions
127-
.vscode-test
128-
129-
# yarn v3
130-
.pnp.*
131-
.yarn/*
132-
!.yarn/patches
133-
!.yarn/plugins
134-
!.yarn/releases
135-
!.yarn/sdks
136-
!.yarn/versions
137-
138-
# Vite logs files
139-
vite.config.js.timestamp-*
140-
vite.config.ts.timestamp-*
41+
.vscode-test

.vscode/mcp.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"servers": {
3+
"test-mcp-server": {
4+
"type": "stdio",
5+
"command": "node",
6+
"args": [
7+
"build/index.js"
8+
],
9+
"cwd": "${workspaceFolder}",
10+
"dev": {
11+
"watch": "index/**/*.js",
12+
"debug": {
13+
"type": "node"
14+
}
15+
},
16+
"env": {}
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)